35 lines
929 B
Plaintext
35 lines
929 B
Plaintext
# ScriptShare Production Environment Configuration
|
|
|
|
# Application Settings
|
|
APP_NAME=ScriptShare
|
|
APP_URL=https://your-domain.com
|
|
ANALYTICS_ENABLED=true
|
|
NODE_ENV=production
|
|
|
|
# Database Configuration
|
|
DB_HOST=scriptshare-db
|
|
DB_PORT=3306
|
|
DB_NAME=scriptshare
|
|
DB_USER=scriptshare_user
|
|
DB_PASSWORD=ScriptShare_App_2024_Secure!
|
|
DB_ROOT_PASSWORD=ScriptShare_Root_2024_Secure
|
|
DATABASE_URL=mysql://scriptshare_user:ScriptShare_App_2024_Secure!@scriptshare-db:3306/scriptshare
|
|
|
|
# Security
|
|
JWT_SECRET=production-super-secret-jwt-key-scriptshare-2024-change-this
|
|
|
|
# API Configuration
|
|
API_PORT=3001
|
|
API_URL=http://localhost:3001
|
|
CORS_ORIGIN=http://localhost
|
|
|
|
# Frontend Configuration
|
|
FRONTEND_PORT=80
|
|
FRONTEND_URL=http://localhost
|
|
VITE_APP_NAME=ScriptShare
|
|
VITE_APP_URL=http://localhost
|
|
VITE_ANALYTICS_ENABLED=true
|
|
VITE_API_URL=http://localhost:3001
|
|
|
|
# Container Configuration
|
|
COMPOSE_PROJECT_NAME=scriptshare |