mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
eb53876af3
* dev: remove default user * dev: initiate licensing * dev: remove migration file 0046 * feat: self hosted licensing initialize * dev: instance licenses * dev: change license response structure * dev: add default properties and issue mention migration * dev: reset migrations * dev: instance configuration * dev: instance configuration migration * dev: update instance configuration model to take null and empty values * dev: instance configuration variables * dev: set default values * dev: update instance configuration load * dev: email configuration settings moved to database * dev: instance configuration on instance bootup * dev: auto instance registration script * dev: instance admin * dev: enable instance configuration and instance admin roles * dev: instance owner fix * dev: instance configuration values * dev: fix instance permissions and serializer * dev: fix email senders * dev: remove deprecated variables * dev: fix current site domain registration * dev: update cors setup and local settings * dev: migrate instance registration and configuration to manage commands * dev: check email validity * dev: update script to use manage command * dev: default bucket creation script * dev: instance admin routes and initial set of screens * dev: admin api to check if the current user is admin * dev: instance admin unique constraints * dev: check magic link login * dev: fix email sending for ssl * dev: create instance activation route if the instance is not activated during startup * dev: removed DJANGO_SETTINGS_MODULE from environment files and deleted auto bucket create script * dev: environment configuration for backend * dev: fix access token variable error * feat: Instance Admin Panel: General Settings (#2792) --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
67 lines
1.5 KiB
Bash
67 lines
1.5 KiB
Bash
APP_RELEASE=latest
|
|
|
|
WEB_REPLICAS=1
|
|
SPACE_REPLICAS=1
|
|
API_REPLICAS=1
|
|
|
|
NGINX_PORT=80
|
|
WEB_URL=http://localhost
|
|
DEBUG=0
|
|
DJANGO_SETTINGS_MODULE=plane.settings.selfhosted # deprecated
|
|
NEXT_PUBLIC_ENABLE_OAUTH=0
|
|
NEXT_PUBLIC_DEPLOY_URL=http://localhost/spaces
|
|
SENTRY_DSN=""
|
|
GITHUB_CLIENT_SECRET=""
|
|
DOCKERIZED=1 # deprecated
|
|
CORS_ALLOWED_ORIGINS=""
|
|
ENVIRONMENT="production"
|
|
|
|
#DB SETTINGS
|
|
PGHOST=plane-db
|
|
PGDATABASE=plane
|
|
POSTGRES_USER=plane
|
|
POSTGRES_PASSWORD=plane
|
|
POSTGRES_DB=plane
|
|
PGDATA=/var/lib/postgresql/data
|
|
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${PGHOST}/${PGDATABASE}
|
|
|
|
# REDIS SETTINGS
|
|
REDIS_HOST=plane-redis
|
|
REDIS_PORT=6379
|
|
REDIS_URL=redis://${REDIS_HOST}:6379/
|
|
|
|
# EMAIL SETTINGS
|
|
EMAIL_HOST=""
|
|
EMAIL_HOST_USER=""
|
|
EMAIL_HOST_PASSWORD=""
|
|
EMAIL_PORT=587
|
|
EMAIL_FROM="Team Plane <team@mailer.plane.so>"
|
|
EMAIL_USE_TLS=1
|
|
EMAIL_USE_SSL=0
|
|
|
|
# OPENAI SETTINGS
|
|
OPENAI_API_BASE=https://api.openai.com/v1 # deprecated
|
|
OPENAI_API_KEY="sk-" # deprecated
|
|
GPT_ENGINE="gpt-3.5-turbo" # deprecated
|
|
|
|
# LOGIN/SIGNUP SETTINGS
|
|
ENABLE_SIGNUP=1
|
|
ENABLE_EMAIL_PASSWORD=1
|
|
ENABLE_MAGIC_LINK_LOGIN=0
|
|
SECRET_KEY=60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5
|
|
|
|
# DATA STORE SETTINGS
|
|
USE_MINIO=1
|
|
AWS_REGION=""
|
|
AWS_ACCESS_KEY_ID="access-key"
|
|
AWS_SECRET_ACCESS_KEY="secret-key"
|
|
AWS_S3_ENDPOINT_URL=http://plane-minio:9000
|
|
AWS_S3_BUCKET_NAME=uploads
|
|
MINIO_ROOT_USER="access-key"
|
|
MINIO_ROOT_PASSWORD="secret-key"
|
|
BUCKET_NAME=uploads
|
|
FILE_SIZE_LIMIT=5242880
|
|
|
|
# Gunicorn Workers
|
|
GUNICORN_WORKERS=2
|