mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-23 06:10:54 +00:00
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
19 lines
443 B
Bash
19 lines
443 B
Bash
# Enable development behavior for commands that import the app directly
|
|
FASTAPI_ENV=development
|
|
|
|
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_PASSWORD=changethis
|
|
DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@localhost:5432/app
|