18 lines
621 B
Plaintext
18 lines
621 B
Plaintext
# Production Environment Configuration
|
|
# Copy this file to .env.production and adjust the values
|
|
|
|
# Database Configuration
|
|
MYSQL_PASSWORD=your_secure_mysql_password_here
|
|
MYSQL_ROOT_PASSWORD=your_super_secure_root_password_here
|
|
|
|
# CORS Origin - Your domain(s)
|
|
CORS_ORIGIN=https://yourdomain.com
|
|
|
|
# API Base URL for frontend
|
|
API_BASE_URL=https://yourdomain.com/api
|
|
|
|
# Optional: JWT Secret (currently not used, but prepared for future authentication)
|
|
# JWT_SECRET=your_super_secure_jwt_secret_minimum_32_characters_long
|
|
|
|
# Optional: Database URL override
|
|
# DATABASE_URL=mysql://rezepte_user:password@mysql:3306/rezepte_klaus |