deployment

This commit is contained in:
gw3000 2023-07-20 21:24:27 +02:00
parent 4dd61f9ba6
commit afdb15d897
4 changed files with 128 additions and 32 deletions

29
.env.example Normal file
View file

@ -0,0 +1,29 @@
# APP URL
APP_URL='https://url.of.the.site'
# Allowed Hosts
DJANGO_ALLOWED_HOSTS='django.localhost'
# Database
DB_HOST='db'
DB_PORT='5432'
DB_PASSWORD='supersecret'
DB_USER='fbf'
DB_NAME='db_fbf'
# DEBUG
DEBUG=0
# Secrets
SECRET_KEY='evenMoreSuperSecret'
# CSRF
CSRF_TRUSTED_ORIGINS='http://django.localhost'
# Email
EMAIL_HOST=''
EMAIL_PORT=587
EMAIL_USE_TLS=True
EMAIL_HOST_USER=''
EMAIL_HOST_PASSWORD=''
DEFAULT_FROM_EMAIL=''