Docker mit traefik und portainer
This commit is contained in:
27
.env.development
Normal file
27
.env.development
Normal file
@@ -0,0 +1,27 @@
|
||||
# Development Environment Configuration
|
||||
NODE_ENV=development
|
||||
|
||||
# Database Configuration
|
||||
DB_HOST=localhost
|
||||
DB_PORT=3306
|
||||
DB_USER=root
|
||||
DB_PASSWORD=
|
||||
DB_NAME=rezepte_klaus
|
||||
|
||||
# Database URL für Prisma
|
||||
DATABASE_URL=mysql://root:@localhost:3306/rezepte_klaus
|
||||
|
||||
# Backend Configuration
|
||||
BACKEND_PORT=3001
|
||||
|
||||
# Upload Configuration
|
||||
UPLOAD_DIR=./uploads
|
||||
MAX_FILE_SIZE=10485760
|
||||
ALLOWED_EXTENSIONS=jpg,jpeg,png,webp
|
||||
|
||||
# Frontend Configuration (Vite Dev Server)
|
||||
VITE_API_URL=http://localhost:3001
|
||||
|
||||
# Security
|
||||
JWT_SECRET=dev_jwt_secret_change_in_production
|
||||
CORS_ORIGIN=http://localhost:5173
|
||||
Reference in New Issue
Block a user