♻️ Refactor project generation, discard cookiecutter, use plain git/clone/fork (#553)

This commit is contained in:
Sebastián Ramírez
2023-11-15 21:20:29 +01:00
committed by GitHub
parent 30c722339b
commit 455de4d9a9
166 changed files with 49 additions and 49 deletions

46
src/.env Normal file
View File

@@ -0,0 +1,46 @@
# Update this with your app domain
DOMAIN=localhost
# DOMAIN=local.dockertoolbox.tiangolo.com
# DOMAIN=localhost.tiangolo.com
STACK_NAME=full-stack-fastapi-postgresql
TRAEFIK_PUBLIC_NETWORK=traefik-public
TRAEFIK_TAG=
TRAEFIK_PUBLIC_TAG=traefik-public
# Configure these with your own Docker registry images
DOCKER_IMAGE_BACKEND=backend
DOCKER_IMAGE_CELERYWORKER=celery
DOCKER_IMAGE_FRONTEND=frontend
# Backend
BACKEND_CORS_ORIGINS=
PROJECT_NAME=
SECRET_KEY=changethis
FIRST_SUPERUSER=admin@example.com
FIRST_SUPERUSER_PASSWORD=changethis
SMTP_TLS=True
SMTP_PORT=
SMTP_HOST=
SMTP_USER=
SMTP_PASSWORD=
EMAILS_FROM_EMAIL=
USERS_OPEN_REGISTRATION=False
SENTRY_DSN=
# Flower
FLOWER_BASIC_AUTH=
# Postgres
POSTGRES_SERVER=db
POSTGRES_USER=postgres
POSTGRES_PASSWORD=changethis
POSTGRES_DB=app
# PgAdmin
PGADMIN_LISTEN_PORT=5050
PGADMIN_DEFAULT_EMAIL=admin@example.com
PGADMIN_DEFAULT_PASSWORD=changethis