-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Instance Registration and Configuration (#2793)
* dev: remove default user * dev: initiate licensing * dev: remove migration file 0046 * feat: self hosted licensing initialize * dev: instance licenses * dev: change license response structure * dev: add default properties and issue mention migration * dev: reset migrations * dev: instance configuration * dev: instance configuration migration * dev: update instance configuration model to take null and empty values * dev: instance configuration variables * dev: set default values * dev: update instance configuration load * dev: email configuration settings moved to database * dev: instance configuration on instance bootup * dev: auto instance registration script * dev: instance admin * dev: enable instance configuration and instance admin roles * dev: instance owner fix * dev: instance configuration values * dev: fix instance permissions and serializer * dev: fix email senders * dev: remove deprecated variables * dev: fix current site domain registration * dev: update cors setup and local settings * dev: migrate instance registration and configuration to manage commands * dev: check email validity * dev: update script to use manage command * dev: default bucket creation script * dev: instance admin routes and initial set of screens * dev: admin api to check if the current user is admin * dev: instance admin unique constraints * dev: check magic link login * dev: fix email sending for ssl * dev: create instance activation route if the instance is not activated during startup * dev: removed DJANGO_SETTINGS_MODULE from environment files and deleted auto bucket create script * dev: environment configuration for backend * dev: fix access token variable error * feat: Instance Admin Panel: General Settings (#2792) --------- Co-authored-by: pablohashescobar <[email protected]> Co-authored-by: Prateek Shourya <[email protected]>
- Loading branch information
1 parent
9369ee5
commit 878707f
Showing
78 changed files
with
1,948 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,12 +31,10 @@ AWS_S3_BUCKET_NAME="uploads" | |
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 | ||
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 | ||
# set to 1 If using the pre-configured minio setup | ||
USE_MINIO=1 | ||
| ||
|
@@ -78,7 +76,7 @@ NEXT_PUBLIC_ENABLE_OAUTH=0 | |
# Backend | ||
# Debug value for api server use it as 0 for production use | ||
DEBUG=0 | ||
DJANGO_SETTINGS_MODULE="plane.settings.selfhosted" | ||
DJANGO_SETTINGS_MODULE="plane.settings.selfhosted" # deprecated | ||
| ||
# Error logs | ||
SENTRY_DSN="" | ||
|
@@ -115,24 +113,22 @@ AWS_S3_BUCKET_NAME="uploads" | |
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 | ||
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 | ||
# 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="[email protected]" | ||
DEFAULT_PASSWORD="password123" | ||
| ||
# SignUps | ||
ENABLE_SIGNUP="1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# Backend | ||
# Debug value for api server use it as 0 for production use | ||
DEBUG=0 | ||
CORS_ALLOWED_ORIGINS="http://localhost" | ||
CORS_ALLOWED_ORIGINS="" | ||
ENVIRONMENT="development" | ||
|
||
# Error logs | ||
SENTRY_DSN="" | ||
|
@@ -18,15 +19,6 @@ 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 <[email protected]>" | ||
EMAIL_USE_TLS="1" | ||
EMAIL_USE_SSL="0" | ||
|
||
# AWS Settings | ||
AWS_REGION="" | ||
AWS_ACCESS_KEY_ID="access-key" | ||
|
@@ -38,9 +30,9 @@ AWS_S3_BUCKET_NAME="uploads" | |
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 | ||
OPENAI_API_BASE="https://api.openai.com/v1" # deprecated | ||
OPENAI_API_KEY="sk-" # deprecated | ||
GPT_ENGINE="gpt-3.5-turbo" # deprecated | ||
|
||
# Github | ||
GITHUB_CLIENT_SECRET="" # For fetching release notes | ||
|
@@ -53,9 +45,6 @@ USE_MINIO=1 | |
# Nginx Configuration | ||
NGINX_PORT=80 | ||
|
||
# Default Creds | ||
DEFAULT_EMAIL="[email protected]" | ||
DEFAULT_PASSWORD="password123" | ||
|
||
# SignUps | ||
ENABLE_SIGNUP="1" | ||
|
@@ -70,12 +59,6 @@ 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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "plane-api", | ||
"version": "0.13.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.