-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (24 loc) · 822 Bytes
/
.env.example
File metadata and controls
28 lines (24 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Chronos Docker Environment Variables
# Copy this file to .env and customize the values
# ============================================
# Database Configuration (MySQL)
# ============================================
MYSQL_ROOT_PASSWORD=rootpassword
MYSQL_DATABASE=chronos
MYSQL_USER=chronos
MYSQL_PASSWORD=chronos_password
MYSQL_PORT=3306
# ============================================
# Backend Configuration
# ============================================
BACKEND_PORT=8000
# ============================================
# Frontend Configuration
# ============================================
FRONTEND_PORT=80
# ============================================
# Optional: Production Settings
# ============================================
# APP_ENV=production
# APP_DEBUG=false
# CORS_ORIGINS=["https://yourdomain.com"]