mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-23 14:13:06 +00:00
28 lines
633 B
Bash
28 lines
633 B
Bash
# Domain
|
|
# This would be set to the production domain with an env var on deployment
|
|
# used by Traefik to transmit traffic and acquire TLS certificates
|
|
DOMAIN=localhost
|
|
# To test the local Traefik config
|
|
# DOMAIN=localhost.tiangolo.com
|
|
|
|
# Environment: local, staging, production
|
|
ENVIRONMENT=local
|
|
|
|
PROJECT_NAME="Full Stack FastAPI Project"
|
|
|
|
SECRET_KEY=changethis
|
|
FIRST_SUPERUSER=admin@example.com
|
|
FIRST_SUPERUSER_PASSWORD=changethis
|
|
|
|
# Emails
|
|
SMTP_HOST=localhost
|
|
EMAILS_FROM_EMAIL=info@example.com
|
|
SMTP_TLS=False
|
|
SMTP_PORT=1025
|
|
|
|
# Postgres
|
|
POSTGRES_SERVER=localhost
|
|
POSTGRES_DB=app
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=changethis
|