mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 22:09:12 +02:00
* feat: iframe added for jira * feat: added iframe * fix: not modal * feat: add dashboard screen * feat: added theme support to match that of our apps * chore: import ui improvement * fix: removed unnecessary code from old importer * feat: added silo base url for config * feat: silo iframe with theme changes and service token createion * fix: iframe fixed while switching themes * feat: silo base url from config * fix: dev server port * fix: loading states for iframe * fix: make ui usable * chore: remove commented code * fix: added correct query params * fix: redundant id * fix: added iframe to ee * fix: constants moved to ee * fix: seperated more changes into ee * fix: base api path fixed for jira import * fix: desc --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so> Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
40 lines
889 B
Plaintext
40 lines
889 B
Plaintext
# Database Settings
|
|
POSTGRES_USER="plane"
|
|
POSTGRES_PASSWORD="plane"
|
|
POSTGRES_DB="plane"
|
|
PGDATA="/var/lib/postgresql/data"
|
|
|
|
# Redis Settings
|
|
REDIS_HOST="plane-redis"
|
|
REDIS_PORT="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
|
|
SILO_BASE_URL=
|
|
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
|
|
|
|
# Imports Config
|
|
SILO_BASE_URL=
|
|
|
|
MONGO_DB_URL="mongodb://plane-mongodb:27017/"
|