33 lines
949 B
Plaintext
33 lines
949 B
Plaintext
# Temp Spec Management System V4 - Environment Configuration
|
|
# Copy this file to .env and update the values
|
|
|
|
# Flask Configuration
|
|
FLASK_ENV=production
|
|
SECRET_KEY=your-secret-key-here
|
|
|
|
# Database Configuration
|
|
DATABASE_URL=mysql+pymysql://A060:WLeSCi0yhtc7@mysql.theaken.com:33306/db_A060?charset=utf8mb4
|
|
|
|
# CDN Configuration (optional)
|
|
CDN_DOMAIN=
|
|
|
|
# SMTP Configuration
|
|
SMTP_SERVER=mail.panjit.com.tw
|
|
SMTP_PORT=25
|
|
SMTP_USE_TLS=false
|
|
SMTP_USE_SSL=false
|
|
SMTP_SENDER_EMAIL=temp-spec-system@panjit.com.tw
|
|
SMTP_SENDER_PASSWORD=
|
|
|
|
# OnlyOffice Configuration
|
|
ONLYOFFICE_PORT=12015
|
|
ONLYOFFICE_JWT_SECRET=your_jwt_secret_key_here
|
|
|
|
# Default Email Recipients (semicolon separated)
|
|
DEFAULT_NOTIFICATION_EMAILS=
|
|
|
|
# Docker Build Configuration
|
|
# If you encounter Docker Hub rate limiting, uncomment and modify:
|
|
# PY_BASE=mirror.gcr.io/library/python:3.10-slim
|
|
# or use an alternative registry like:
|
|
# PY_BASE=registry.cn-hangzhou.aliyuncs.com/acs/python:3.10-slim |