committed by
GitHub
166 changed files with 49 additions and 49 deletions
@ -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 |
@ -1,10 +1,9 @@ |
|||||
VUE_APP_DOMAIN_DEV=localhost |
VUE_APP_DOMAIN_DEV=localhost |
||||
# VUE_APP_DOMAIN_DEV=local.dockertoolbox.tiangolo.com |
# VUE_APP_DOMAIN_DEV=local.dockertoolbox.tiangolo.com |
||||
# VUE_APP_DOMAIN_DEV=localhost.tiangolo.com |
# VUE_APP_DOMAIN_DEV=localhost.tiangolo.com |
||||
# VUE_APP_DOMAIN_DEV=dev.{{cookiecutter.domain_main}} |
VUE_APP_DOMAIN_STAG= |
||||
VUE_APP_DOMAIN_STAG={{cookiecutter.domain_staging}} |
VUE_APP_DOMAIN_PROD= |
||||
VUE_APP_DOMAIN_PROD={{cookiecutter.domain_main}} |
VUE_APP_NAME= |
||||
VUE_APP_NAME={{cookiecutter.project_name}} |
|
||||
VUE_APP_ENV=development |
VUE_APP_ENV=development |
||||
# VUE_APP_ENV=staging |
# VUE_APP_ENV=staging |
||||
# VUE_APP_ENV=production |
# VUE_APP_ENV=production |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue