-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2309 from makeplane/stage-release
release: stage release to production
- Loading branch information
Showing
377 changed files
with
19,461 additions
and
8,121 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,3 @@ | ||
# 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="" | ||
# plane deploy using nginx | ||
NEXT_PUBLIC_DEPLOY_WITH_NGINX=1 | ||
|
||
# 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" | ||
|
@@ -45,15 +10,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" | ||
|
@@ -69,9 +25,6 @@ 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 | ||
|
@@ -80,10 +33,3 @@ USE_MINIO=1 | |
# Nginx Configuration | ||
NGINX_PORT=80 | ||
|
||
# Default Creds | ||
DEFAULT_EMAIL="[email protected]" | ||
DEFAULT_PASSWORD="password123" | ||
|
||
# SignUps | ||
ENABLE_SIGNUP="1" | ||
# Auto generated and Required that will be generated from setup.sh |
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 |
---|---|---|
|
@@ -22,10 +22,6 @@ jobs: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Setup .npmrc for repository | ||
run: | | ||
echo -e "@tiptap-pro:registry=https://registry.tiptap.dev/\n//registry.tiptap.dev/:_authToken=${{ secrets.TIPTAP_TOKEN }}" > .npmrc | ||
- name: Extract metadata (tags, labels) for Docker (Docker Hub) from Github Release | ||
id: metaFrontend | ||
uses: docker/[email protected] | ||
|
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Backend | ||
# Debug value for api server use it as 0 for production use | ||
DEBUG=0 | ||
DJANGO_SETTINGS_MODULE="plane.settings.selfhosted" | ||
|
||
# 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 <[email protected]>" | ||
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="[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
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.
8d4ac9b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
plane-sh – ./space/
plane-sh-git-master-plane.vercel.app
plane-sh-plane.vercel.app
plane-deploy.vercel.app
plane.sh
8d4ac9b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
plane – ./web/
plane-git-master-plane.vercel.app
plane-plane.vercel.app
plane-theta.vercel.app
app.plane.so