20 lines
604 B
Bash
20 lines
604 B
Bash
# Domain
|
|
DOMAIN={{sensitive_data}}
|
|
|
|
# Backend
|
|
BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://{{sensitive_data}},http://{{sensitive_data}}"
|
|
JWT_SECRET_KEY=postgresql+psycopg://{{sensitive_data}}:{{sensitive_data}}@localhost:5432/postgres
|
|
DEBUG=true
|
|
|
|
# Bot
|
|
TOKEN_TELEGRAM_API={{sensitive_data}}
|
|
WEB_APP_URL=https://{{sensitive_data}}
|
|
|
|
# Postgres
|
|
POSTGRES_SERVER=db
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_DB=postgres
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
DATABASE_URL=postgresql+psycopg://{{sensitive_data}}:{{sensitive_data}}@db:5432/postgres
|