forked from github/plane
67 lines
1.3 KiB
Plaintext
67 lines
1.3 KiB
Plaintext
# Backend
|
|
# Debug value for api server use it as 0 for production use
|
|
DEBUG=0
|
|
CORS_ALLOWED_ORIGINS=""
|
|
|
|
# Error logs
|
|
SENTRY_DSN=""
|
|
SENTRY_ENVIRONMENT="development"
|
|
|
|
# Database Settings
|
|
PGUSER="plane"
|
|
PGPASSWORD="plane"
|
|
PGHOST="plane-db"
|
|
PGDATABASE="plane"
|
|
DATABASE_URL=postgresql://${PGUSER}:${PGPASSWORD}@${PGHOST}/${PGDATABASE}
|
|
|
|
# Oauth variables
|
|
GOOGLE_CLIENT_ID=""
|
|
GITHUB_CLIENT_ID=""
|
|
GITHUB_CLIENT_SECRET=""
|
|
|
|
# Redis Settings
|
|
REDIS_HOST="plane-redis"
|
|
REDIS_PORT="6379"
|
|
REDIS_URL="redis://${REDIS_HOST}:6379/"
|
|
|
|
# AWS Settings
|
|
AWS_REGION=""
|
|
AWS_ACCESS_KEY_ID="access-key"
|
|
AWS_SECRET_ACCESS_KEY="secret-key"
|
|
AWS_S3_ENDPOINT_URL="http://plane-minio:9000"
|
|
# Changing this requires change in the nginx.conf for uploads if using minio setup
|
|
AWS_S3_BUCKET_NAME="uploads"
|
|
# Maximum file upload limit
|
|
FILE_SIZE_LIMIT=5242880
|
|
|
|
# GPT settings
|
|
OPENAI_API_BASE="https://api.openai.com/v1" # deprecated
|
|
OPENAI_API_KEY="sk-" # deprecated
|
|
GPT_ENGINE="gpt-3.5-turbo" # deprecated
|
|
|
|
# Settings related to Docker
|
|
DOCKERIZED=1 # deprecated
|
|
|
|
# set to 1 If using the pre-configured minio setup
|
|
USE_MINIO=1
|
|
|
|
# Nginx Configuration
|
|
NGINX_PORT=80
|
|
|
|
|
|
# SignUps
|
|
ENABLE_SIGNUP="1"
|
|
|
|
# Enable Email/Password Signup
|
|
ENABLE_EMAIL_PASSWORD="1"
|
|
|
|
# Enable Magic link Login
|
|
ENABLE_MAGIC_LINK_LOGIN="0"
|
|
|
|
# Email redirections and minio domain settings
|
|
WEB_URL="http://localhost"
|
|
|
|
# Gunicorn Workers
|
|
GUNICORN_WORKERS=2
|
|
|