tmpl-fastapi/.env

14 lines
306 B
Bash

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
DB_HOST=${REPO_NAME_SNAKE}_db
DB_PORT=3306
DB_USER=${REPO_NAME_SNAKE}
DB_PASSWORD=password
DB_DATABASE=${REPO_NAME_SNAKE}