mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
547a76ae55
* dev: add admin and space base url * fix: formatting * dev: add app,space and admin base url to the api env * fix: updated app base urls redirection * dev: add change password endpoint * dev: add none as default for base url * dev: space password management endpoints * fix: docker env update * fix: docker and env settings * fix: docker changes * fix: next config update --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com>
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"NEXT_PUBLIC_API_BASE_URL",
|
|
"NEXT_PUBLIC_ADMIN_BASE_URL",
|
|
"NEXT_PUBLIC_ADMIN_BASE_PATH",
|
|
"NEXT_PUBLIC_SPACE_BASE_URL",
|
|
"NEXT_PUBLIC_SPACE_BASE_PATH",
|
|
"NEXT_PUBLIC_WEB_BASE_URL",
|
|
"NEXT_PUBLIC_SENTRY_DSN",
|
|
"NEXT_PUBLIC_SENTRY_ENVIRONMENT",
|
|
"NEXT_PUBLIC_ENABLE_SENTRY",
|
|
"NEXT_PUBLIC_TRACK_EVENTS",
|
|
"NEXT_PUBLIC_PLAUSIBLE_DOMAIN",
|
|
"NEXT_PUBLIC_CRISP_ID",
|
|
"NEXT_PUBLIC_ENABLE_SESSION_RECORDER",
|
|
"NEXT_PUBLIC_SESSION_RECORDER_KEY",
|
|
"NEXT_PUBLIC_EXTRA_IMAGE_DOMAINS",
|
|
"NEXT_PUBLIC_POSTHOG_KEY",
|
|
"NEXT_PUBLIC_POSTHOG_HOST",
|
|
"NEXT_PUBLIC_POSTHOG_DEBUG",
|
|
"SENTRY_AUTH_TOKEN"
|
|
],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "dist/**"]
|
|
},
|
|
"develop": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|