2023-05-29 06:41:16 +00:00
|
|
|
# Database Settings
|
|
|
|
PGUSER="plane"
|
|
|
|
PGPASSWORD="plane"
|
|
|
|
PGHOST="plane-db"
|
|
|
|
PGDATABASE="plane"
|
2023-06-16 13:28:08 +00:00
|
|
|
DATABASE_URL=postgresql://${PGUSER}:${PGPASSWORD}@${PGHOST}/${PGDATABASE}
|
|
|
|
|
|
|
|
# Redis Settings
|
|
|
|
REDIS_HOST="plane-redis"
|
|
|
|
REDIS_PORT="6379"
|
|
|
|
REDIS_URL="redis://${REDIS_HOST}:6379/"
|
2023-05-29 06:41:16 +00:00
|
|
|
|
2023-05-25 04:54:20 +00:00
|
|
|
# AWS Settings
|
2023-05-03 08:06:55 +00:00
|
|
|
AWS_REGION=""
|
2023-05-26 05:39:59 +00:00
|
|
|
AWS_ACCESS_KEY_ID="access-key"
|
|
|
|
AWS_SECRET_ACCESS_KEY="secret-key"
|
2023-06-06 02:51:57 +00:00
|
|
|
AWS_S3_ENDPOINT_URL="http://plane-minio:9000"
|
2023-05-29 06:41:16 +00:00
|
|
|
# Changing this requires change in the nginx.conf for uploads if using minio setup
|
2023-05-26 05:39:59 +00:00
|
|
|
AWS_S3_BUCKET_NAME="uploads"
|
2023-05-29 06:41:16 +00:00
|
|
|
# Maximum file upload limit
|
|
|
|
FILE_SIZE_LIMIT=5242880
|
2023-05-25 04:54:20 +00:00
|
|
|
|
|
|
|
# GPT settings
|
2023-11-18 10:47:01 +00:00
|
|
|
OPENAI_API_BASE="https://api.openai.com/v1" # deprecated
|
|
|
|
OPENAI_API_KEY="sk-" # deprecated
|
|
|
|
GPT_ENGINE="gpt-3.5-turbo" # deprecated
|
2023-05-25 04:54:20 +00:00
|
|
|
|
2023-05-26 05:39:59 +00:00
|
|
|
# Settings related to Docker
|
2023-11-18 10:47:01 +00:00
|
|
|
DOCKERIZED=1 # deprecated
|
|
|
|
|
2023-07-11 13:21:25 +00:00
|
|
|
# set to 1 If using the pre-configured minio setup
|
2023-06-05 07:23:04 +00:00
|
|
|
USE_MINIO=1
|
2023-05-26 05:39:59 +00:00
|
|
|
|
2023-05-28 04:26:15 +00:00
|
|
|
# Nginx Configuration
|
|
|
|
NGINX_PORT=80
|