2023-09-13 14:51:02 +00:00
|
|
|
# Backend
|
|
|
|
# Debug value for api server use it as 0 for production use
|
|
|
|
DEBUG=0
|
2023-11-18 10:47:01 +00:00
|
|
|
CORS_ALLOWED_ORIGINS=""
|
2023-09-13 14:51:02 +00:00
|
|
|
|
|
|
|
# Error logs
|
|
|
|
SENTRY_DSN=""
|
2023-11-18 20:18:05 +00:00
|
|
|
SENTRY_ENVIRONMENT="development"
|
2023-09-13 14:51:02 +00:00
|
|
|
|
|
|
|
# Database Settings
|
2024-01-19 10:43:22 +00:00
|
|
|
POSTGRES_USER="plane"
|
|
|
|
POSTGRES_PASSWORD="plane"
|
|
|
|
POSTGRES_HOST="plane-db"
|
|
|
|
POSTGRES_DB="plane"
|
|
|
|
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}/${POSTGRES_DB}
|
2023-09-13 14:51:02 +00:00
|
|
|
|
2023-12-04 09:18:40 +00:00
|
|
|
|
2023-09-13 14:51:02 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
# Settings related to Docker
|
2023-11-20 16:02:00 +00:00
|
|
|
DOCKERIZED=1 # deprecated
|
|
|
|
|
2023-09-13 14:51:02 +00:00
|
|
|
# set to 1 If using the pre-configured minio setup
|
|
|
|
USE_MINIO=1
|
|
|
|
|
|
|
|
# Nginx Configuration
|
|
|
|
NGINX_PORT=80
|
|
|
|
|
2023-10-04 12:09:12 +00:00
|
|
|
# Email redirections and minio domain settings
|
|
|
|
WEB_URL="http://localhost"
|
2023-10-04 13:36:38 +00:00
|
|
|
|
2023-11-07 12:35:38 +00:00
|
|
|
# Gunicorn Workers
|
2023-11-15 10:26:57 +00:00
|
|
|
GUNICORN_WORKERS=2
|