forked from github/plane
daa8f7d79b
* Feat: Implemented project publish settings * dev: updated the env dependancy in turbo and enabling the publish access to admin
88 lines
2.2 KiB
Plaintext
88 lines
2.2 KiB
Plaintext
# Frontend
|
|
# Extra image domains that need to be added for Next Image
|
|
NEXT_PUBLIC_EXTRA_IMAGE_DOMAINS=
|
|
# Google Client ID for Google OAuth
|
|
NEXT_PUBLIC_GOOGLE_CLIENTID=""
|
|
# Github ID for Github OAuth
|
|
NEXT_PUBLIC_GITHUB_ID=""
|
|
# Github App Name for GitHub Integration
|
|
NEXT_PUBLIC_GITHUB_APP_NAME=""
|
|
# Sentry DSN for error monitoring
|
|
NEXT_PUBLIC_SENTRY_DSN=""
|
|
# Enable/Disable OAUTH - default 0 for selfhosted instance
|
|
NEXT_PUBLIC_ENABLE_OAUTH=0
|
|
# Enable/Disable sentry
|
|
NEXT_PUBLIC_ENABLE_SENTRY=0
|
|
# Enable/Disable session recording
|
|
NEXT_PUBLIC_ENABLE_SESSION_RECORDER=0
|
|
# Enable/Disable event tracking
|
|
NEXT_PUBLIC_TRACK_EVENTS=0
|
|
# Slack for Slack Integration
|
|
NEXT_PUBLIC_SLACK_CLIENT_ID=""
|
|
# For Telemetry, set it to "app.plane.so"
|
|
NEXT_PUBLIC_PLAUSIBLE_DOMAIN=""
|
|
# public boards deploy url
|
|
NEXT_PUBLIC_DEPLOY_URL=""
|
|
|
|
# Backend
|
|
# Debug value for api server use it as 0 for production use
|
|
DEBUG=0
|
|
|
|
# Error logs
|
|
SENTRY_DSN=""
|
|
|
|
# Database Settings
|
|
PGUSER="plane"
|
|
PGPASSWORD="plane"
|
|
PGHOST="plane-db"
|
|
PGDATABASE="plane"
|
|
DATABASE_URL=postgresql://${PGUSER}:${PGPASSWORD}@${PGHOST}/${PGDATABASE}
|
|
|
|
# Redis Settings
|
|
REDIS_HOST="plane-redis"
|
|
REDIS_PORT="6379"
|
|
REDIS_URL="redis://${REDIS_HOST}:6379/"
|
|
|
|
# Email Settings
|
|
EMAIL_HOST=""
|
|
EMAIL_HOST_USER=""
|
|
EMAIL_HOST_PASSWORD=""
|
|
EMAIL_PORT=587
|
|
EMAIL_FROM="Team Plane <team@mailer.plane.so>"
|
|
EMAIL_USE_TLS="1"
|
|
EMAIL_USE_SSL="0"
|
|
|
|
# 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
|
|
OPENAI_API_BASE="https://api.openai.com/v1" # change if using a custom endpoint
|
|
OPENAI_API_KEY="sk-" # add your openai key here
|
|
GPT_ENGINE="gpt-3.5-turbo" # use "gpt-4" if you have access
|
|
|
|
# Github
|
|
GITHUB_CLIENT_SECRET="" # For fetching release notes
|
|
|
|
# Settings related to Docker
|
|
DOCKERIZED=1
|
|
# set to 1 If using the pre-configured minio setup
|
|
USE_MINIO=1
|
|
|
|
# Nginx Configuration
|
|
NGINX_PORT=80
|
|
|
|
# Default Creds
|
|
DEFAULT_EMAIL="captain@plane.so"
|
|
DEFAULT_PASSWORD="password123"
|
|
|
|
# SignUps
|
|
ENABLE_SIGNUP="1"
|
|
# Auto generated and Required that will be generated from setup.sh
|