Files
plane/.env.example
T

47 lines
1.0 KiB
Bash
Raw Normal View History

2023-05-29 12:11:16 +05:30
# Database Settings
2024-01-17 16:44:31 +05:30
POSTGRES_USER="plane"
POSTGRES_PASSWORD="plane"
POSTGRES_DB="plane"
PGDATA="/var/lib/postgresql/data"
# Redis Settings
REDIS_HOST="plane-redis"
REDIS_PORT="6379"
2023-05-29 12:11:16 +05:30
# RabbitMQ Settings
RABBITMQ_HOST="plane-mq"
RABBITMQ_PORT="5672"
RABBITMQ_USER="plane"
RABBITMQ_PASSWORD="plane"
RABBITMQ_VHOST="plane"
2023-05-25 10:24:20 +05:30
# AWS Settings
2023-05-03 13:36:55 +05:30
AWS_REGION=""
2023-05-26 11:09:59 +05:30
AWS_ACCESS_KEY_ID="access-key"
AWS_SECRET_ACCESS_KEY="secret-key"
AWS_S3_ENDPOINT_URL="http://plane-minio:9000"
2023-05-29 12:11:16 +05:30
# Changing this requires change in the nginx.conf for uploads if using minio setup
2023-05-26 11:09:59 +05:30
AWS_S3_BUCKET_NAME="uploads"
2023-05-29 12:11:16 +05:30
# Maximum file upload limit
FILE_SIZE_LIMIT=5242880
2023-05-25 10:24:20 +05:30
# GPT settings
OPENAI_API_BASE="https://api.openai.com/v1" # deprecated
OPENAI_API_KEY="sk-" # deprecated
GPT_ENGINE="gpt-3.5-turbo" # deprecated
2023-05-25 10:24:20 +05:30
2023-05-26 11:09:59 +05:30
# Settings related to Docker
DOCKERIZED=1 # deprecated
2023-07-11 15:21:25 +02:00
# set to 1 If using the pre-configured minio setup
2023-06-05 12:53:04 +05:30
USE_MINIO=1
2023-05-26 11:09:59 +05:30
2023-05-28 09:56:15 +05:30
# Nginx Configuration
NGINX_PORT=80
# Force HTTPS for handling SSL Termination
MINIO_ENDPOINT_SSL=0
# API key rate limit
API_KEY_RATE_LIMIT="60/minute"