forked from github/plane
870c4403e4
* dev: initiate external apis * dev: external api * dev: external public api implementation * dev: add prefix to all api tokens * dev: flag to enable disable api token api access * dev: webhook model create and apis * dev: webhook settings * fix: webhook logs * chore: removed drf spectacular * dev: remove retry_count and fix api logging for get requests * dev: refactor webhook logic * fix: celery retry mechanism * chore: event and action change * chore: migrations changes * dev: proxy setup for apis * chore: changed retry time and cleanup * chore: added issue comment and inbox issue api endpoints * fix: migration files * fix: added env variables * fix: removed issue attachment from proxy * fix: added new migration file * fix: restricted wehbook access * chore: changed urls * chore: fixed porject serializer * fix: set expire for api token * fix: retrive endpoint for api token * feat: Api Token screens & api integration * dev: webhook endpoint changes * dev: add fields for webhook updates * feat: Download Api secret key * chore: removed BASE API URL * feat: revoke token access * dev: migration fixes * feat: workspace webhooks (#2748) * feat: workspace webhook store, services integeration and rendered webhook list and create * chore: handled webhook update and rengenerate token in workspace webhooks * feat: regenerate key and delete functionality --------- Co-authored-by: Ramesh Kumar <rameshkumar@rameshs-MacBook-Pro.local> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Ramesh Kumar Chandra <rameshkumar2299@gmail.com> * fix: url validation added * fix: seperated env for webhook and api * Web hooks refactoring * add show option for generated hook key * Api token restructure * webhook minor fixes * fix build errors * chore: improvements in file structring * dev: rate limiting the open apis --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: LAKHAN BAHETI <lakhanbaheti9@gmail.com> Co-authored-by: rahulramesha <71900764+rahulramesha@users.noreply.github.com> Co-authored-by: Ramesh Kumar <rameshkumar@rameshs-MacBook-Pro.local> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Ramesh Kumar Chandra <rameshkumar2299@gmail.com> Co-authored-by: Nikhil <118773738+pablohashescobar@users.noreply.github.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: rahulramesha <rahulramesham@gmail.com>
82 lines
1.7 KiB
Plaintext
82 lines
1.7 KiB
Plaintext
# Backend
|
|
# Debug value for api server use it as 0 for production use
|
|
DEBUG=0
|
|
CORS_ALLOWED_ORIGINS="http://localhost"
|
|
|
|
# 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"
|
|
|
|
|
|
# Enable Email/Password Signup
|
|
ENABLE_EMAIL_PASSWORD="1"
|
|
|
|
# Enable Magic link Login
|
|
ENABLE_MAGIC_LINK_LOGIN="0"
|
|
|
|
# Email redirections and minio domain settings
|
|
WEB_URL="http://localhost"
|
|
|
|
# Set it to 0, to disable it
|
|
ENABLE_WEBHOOK=1
|
|
|
|
# Set it to 0, to disable it
|
|
ENABLE_API=1
|
|
|
|
# Gunicorn Workers
|
|
GUNICORN_WORKERS=2
|
|
|