27 lines
569 B
Plaintext
27 lines
569 B
Plaintext
# 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 |