2023-09-13 20:21:02 +05:30
|
|
|
# Backend
|
|
|
|
|
# Debug value for api server use it as 0 for production use
|
|
|
|
|
DEBUG=0
|
2024-05-09 17:46:31 +05:30
|
|
|
CORS_ALLOWED_ORIGINS="http://localhost"
|
2023-09-13 20:21:02 +05:30
|
|
|
|
|
|
|
|
# Error logs
|
|
|
|
|
SENTRY_DSN=""
|
2023-11-19 01:48:05 +05:30
|
|
|
SENTRY_ENVIRONMENT="development"
|
2023-09-13 20:21:02 +05:30
|
|
|
|
|
|
|
|
# Database Settings
|
2024-01-19 16:13:22 +05:30
|
|
|
POSTGRES_USER="plane"
|
|
|
|
|
POSTGRES_PASSWORD="plane"
|
|
|
|
|
POSTGRES_HOST="plane-db"
|
|
|
|
|
POSTGRES_DB="plane"
|
2024-05-20 12:29:03 +05:30
|
|
|
POSTGRES_PORT=5432
|
|
|
|
|
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}
|
2023-09-13 20:21:02 +05:30
|
|
|
|
|
|
|
|
# Redis Settings
|
|
|
|
|
REDIS_HOST="plane-redis"
|
|
|
|
|
REDIS_PORT="6379"
|
|
|
|
|
REDIS_URL="redis://${REDIS_HOST}:6379/"
|
|
|
|
|
|
2024-09-02 17:40:17 +05:30
|
|
|
# RabbitMQ Settings
|
|
|
|
|
RABBITMQ_HOST="plane-mq"
|
|
|
|
|
RABBITMQ_PORT="5672"
|
|
|
|
|
RABBITMQ_USER="plane"
|
|
|
|
|
RABBITMQ_PASSWORD="plane"
|
|
|
|
|
RABBITMQ_VHOST="plane"
|
|
|
|
|
|
2023-09-13 20:21:02 +05:30
|
|
|
# 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 21:32:00 +05:30
|
|
|
DOCKERIZED=1 # deprecated
|
|
|
|
|
|
2023-09-13 20:21:02 +05:30
|
|
|
# set to 1 If using the pre-configured minio setup
|
|
|
|
|
USE_MINIO=1
|
|
|
|
|
|
|
|
|
|
# Nginx Configuration
|
|
|
|
|
NGINX_PORT=80
|
|
|
|
|
|
2023-10-04 17:39:12 +05:30
|
|
|
# Email redirections and minio domain settings
|
|
|
|
|
WEB_URL="http://localhost"
|
2023-10-04 19:06:38 +05:30
|
|
|
|
2023-11-07 18:05:38 +05:30
|
|
|
# Gunicorn Workers
|
2023-11-15 15:56:57 +05:30
|
|
|
GUNICORN_WORKERS=2
|
2024-05-10 02:32:42 +05:30
|
|
|
|
|
|
|
|
# Base URLs
|
|
|
|
|
ADMIN_BASE_URL=
|
|
|
|
|
SPACE_BASE_URL=
|
|
|
|
|
APP_BASE_URL=
|
2024-07-30 20:05:08 +05:30
|
|
|
|
|
|
|
|
# Hard delete files after days
|
2024-08-16 11:57:52 +05:30
|
|
|
HARD_DELETE_AFTER_DAYS=60
|