forked from github/plane
0416e07f46
* merge-commit: self hosted updates * dev: updates in self hosting setup * dev: update script to get the instance IP * dev: update script to generate backend secret key
22 lines
410 B
Plaintext
22 lines
410 B
Plaintext
DJANGO_SETTINGS_MODULE="plane.settings.production"
|
|
# Database
|
|
DATABASE_URL=postgres://plane:xyzzyspoon@db:5432/plane
|
|
# Cache
|
|
REDIS_URL=redis://redis:6379/
|
|
# SMPT
|
|
EMAIL_HOST=""
|
|
EMAIL_HOST_USER=""
|
|
EMAIL_HOST_PASSWORD=""
|
|
# AWS
|
|
AWS_REGION=""
|
|
AWS_ACCESS_KEY_ID=""
|
|
AWS_SECRET_ACCESS_KEY=""
|
|
AWS_S3_BUCKET_NAME=""
|
|
# FE
|
|
WEB_URL="localhost/"
|
|
# OAUTH
|
|
GITHUB_CLIENT_SECRET=""
|
|
# Flags
|
|
DISABLE_COLLECTSTATIC=1
|
|
DOCKERIZED=1
|