mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 22:09:12 +02:00
* restructured Proxy, Deploy/CLI-install contents * removed caddy assets fron release * fixed changes in variables.env * fixed action * test build * testing release * finalize the caddy changes * renamed proxy-ee to proxy. * chore: changed docker compose file swarm compatible * fix: added port no in proxy configuration * added Replica Envs for services * compose file for coolify * updated docker-compose * fix changes * updated docker-compose.yml * updated monitor to handle COOLIFY * updated deploy_platform value * pulled latest preview * updated variables env * fix merge conflicts * fix changes * fix changes * chore: coolify compose file * chore: added github action to upload coolify compose file on s3 * fixed monitor build * testing release build * updated branch-build-ee --------- Co-authored-by: Manish Gupta <manish@plane.so> Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com>
109 lines
2.3 KiB
Bash
109 lines
2.3 KiB
Bash
INSTALL_DIR=/opt/plane
|
|
DOMAIN_NAME=localhost
|
|
APP_RELEASE_VERSION=v1.8.0
|
|
|
|
WEB_REPLICAS=1
|
|
SPACE_REPLICAS=1
|
|
ADMIN_REPLICAS=1
|
|
API_REPLICAS=1
|
|
WORKER_REPLICAS=1
|
|
BEAT_WORKER_REPLICAS=1
|
|
LIVE_REPLICAS=1
|
|
|
|
LISTEN_HTTP_PORT=80
|
|
LISTEN_HTTPS_PORT=443
|
|
APP_PROTOCOL=http
|
|
TRUSTED_PROXIES=0.0.0.0/0
|
|
|
|
# If SSL Cert to be generated, set CERT_EMAIL and APP_PROTOCOL to https
|
|
CERT_EMAIL=admin@example.com
|
|
CERT_ACME_CA=https://acme-v02.api.letsencrypt.org/directory
|
|
|
|
SITE_ADDRESS=localhost:80
|
|
|
|
# For DNS Challenge based certificate generation, set the CERT_ACME_DNS
|
|
# CERT_ACME_DNS=acme_dns CERT_DNS_PROVIDER CERT_DNS_PROVIDER_API_KEY
|
|
CERT_ACME_DNS=
|
|
|
|
# Create a new UUID and paste it as `MACHINE_SIGNATURE` value
|
|
# this can be generated in terminal using command `openssl rand -hex 16` or `uuidgen`
|
|
MACHINE_SIGNATURE=
|
|
|
|
WEB_URL=http://localhost
|
|
DEBUG=0
|
|
SENTRY_DSN=
|
|
SENTRY_ENVIRONMENT=production
|
|
CORS_ALLOWED_ORIGINS=http://localhost
|
|
API_BASE_URL=http://api:8000
|
|
|
|
#DB SETTINGS
|
|
PGHOST=plane-db
|
|
PGDATABASE=plane
|
|
POSTGRES_USER=plane
|
|
POSTGRES_PASSWORD=plane
|
|
POSTGRES_DB=plane
|
|
PGDATA=/var/lib/postgresql/data
|
|
DATABASE_URL=postgresql://plane:plane@plane-db:5432/plane
|
|
|
|
# REDIS SETTINGS
|
|
REDIS_HOST=plane-redis
|
|
REDIS_PORT=6379
|
|
REDIS_URL=redis://plane-redis:6379
|
|
|
|
# RabbitMQ Settings
|
|
RABBITMQ_HOST=plane-mq
|
|
RABBITMQ_PORT=5672
|
|
RABBITMQ_DEFAULT_USER=plane
|
|
RABBITMQ_DEFAULT_PASS=plane
|
|
RABBITMQ_DEFAULT_VHOST=plane
|
|
RABBITMQ_VHOST=plane
|
|
AMQP_URL=amqp://plane:plane@plane-mq:5672/plane
|
|
|
|
# Secret Key
|
|
SECRET_KEY=60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5
|
|
|
|
# DATA STORE SETTINGS
|
|
USE_MINIO=1
|
|
AWS_REGION=
|
|
AWS_ACCESS_KEY_ID=access-key
|
|
AWS_SECRET_ACCESS_KEY=secret-key
|
|
AWS_S3_ENDPOINT_URL=http://plane-minio:9000
|
|
AWS_S3_BUCKET_NAME=uploads
|
|
MINIO_ROOT_USER=access-key
|
|
MINIO_ROOT_PASSWORD=secret-key
|
|
BUCKET_NAME=uploads
|
|
FILE_SIZE_LIMIT=5242880
|
|
|
|
# Gunicorn Workers
|
|
GUNICORN_WORKERS=2
|
|
|
|
# SSL verification
|
|
SSL_VERIFY=1
|
|
|
|
# Monitor Base urls
|
|
FEATURE_FLAG_SERVER_BASE_URL=http://monitor:8080
|
|
PAYMENT_SERVER_BASE_URL=http://monitor:8080
|
|
|
|
# Live server variables
|
|
API_BASE_URL=http://api:8000
|
|
|
|
# Silo Server Variables
|
|
SILO_HMAC_SECRET_KEY=tnbbvj6ATPvze4zaygdujxg4dpk4hqx0WDW
|
|
|
|
# Silo Integration Variables
|
|
# Github Integration
|
|
GITHUB_CLIENT_ID=
|
|
GITHUB_CLIENT_SECRET=
|
|
GITHUB_APP_NAME=
|
|
GITHUB_APP_ID=
|
|
GITHUB_PRIVATE_KEY=
|
|
|
|
# Slack Integration
|
|
SLACK_CLIENT_ID=
|
|
SLACK_CLIENT_SECRET=
|
|
|
|
# Gitlab Integration
|
|
GITLAB_CLIENT_ID=
|
|
GITLAB_CLIENT_SECRET=
|
|
|