Add Docker Compose configuration and environment files for local and production setups

- Created docker-compose.docker-local.yml for local testing of frontend and backend services.
- Added .env.development for development environment configuration.
- Introduced .env.docker-local for local Docker environment settings.
- Added .env.production for production environment configuration for Synology deployment.
This commit is contained in:
2026-01-30 11:29:17 -05:00
parent 4d14f9ba9c
commit fee8fe2551
30 changed files with 899 additions and 304 deletions

View File

@@ -19,8 +19,10 @@
"pokedex:install": "cd code/websites/pokedex.online && npm install",
"pokedex:dev": "cd code/websites/pokedex.online && npm run dev",
"pokedex:dev:full": "cd code/websites/pokedex.online && npm run dev:full",
"pokedex:build": "cd code/websites/pokedex.online && npm run build",
"pokedex:preview": "cd code/websites/pokedex.online && npm run preview"
"pokedex:preview": "cd code/websites/pokedex.online && npm run preview",
"pokedex:docker:local": "cd code/websites/pokedex.online && npm run docker:local",
"pokedex:deploy:local": "cd code/websites/pokedex.online && npm run deploy:local",
"pokedex:deploy:prod": "cd code/websites/pokedex.online && npm run deploy:prod"
},
"keywords": [],
"author": "FragginWagon <greg.r.jacobs@gmail.com> (http://binarywasteland.com/)",