tmpl-fastapi/.env

15 lines
306 B
Bash
Raw Normal View History

APP_HOST=0.0.0.0
APP_PORT=8000
# Generate a strong secret key
# On Linux: openssl rand -hex 32
# If this variable is not set,
# the key is generated automatically
#SECRET_KEY=secret
2023-02-19 16:49:44 +03:00
DB_HOST=${REPO_NAME_SNAKE}_db
DB_PORT=3306
DB_USER=${REPO_NAME_SNAKE}
DB_PASSWORD=password
2023-02-19 16:49:44 +03:00
DB_DATABASE=${REPO_NAME_SNAKE}