- Backend Dockerfile: Python 3.12, non-root user, healthcheck - Frontend Dockerfile: Multi-stage build, production stage - docker-compose.yml: env_file, healthchecks, restart policies - docker-compose.prod.yml: Production config with nginx - .env.example: Updated with all variables Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
528 B
Plaintext
22 lines
528 B
Plaintext
# Galaxy-PO Environment Variables
|
|
# Copy this file to .env and fill in the values
|
|
|
|
# Database
|
|
DB_USER=galaxy
|
|
DB_PASSWORD=your_secure_password_here
|
|
DB_NAME=galaxy_po
|
|
|
|
# JWT Authentication
|
|
JWT_SECRET=your_jwt_secret_key_here_at_least_32_characters
|
|
|
|
# Korea Investment & Securities OpenAPI (optional)
|
|
KIS_APP_KEY=your_kis_app_key
|
|
KIS_APP_SECRET=your_kis_app_secret
|
|
KIS_ACCOUNT_NO=your_account_number
|
|
|
|
# DART OpenAPI (Financial Statements, optional)
|
|
DART_API_KEY=your_dart_api_key
|
|
|
|
# Production only
|
|
API_URL=https://your-domain.com
|