mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
chore: add missing env variables to turbo.json
This commit is contained in:
+19
-13
@@ -1,16 +1,22 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://turborepo.com/schema.json",
|
"$schema": "https://turborepo.com/schema.json",
|
||||||
"tasks": {
|
"tasks": {
|
||||||
"build": {
|
"build": {
|
||||||
"dependsOn": ["^build"],
|
"dependsOn": ["^build"],
|
||||||
"outputs": [".next/**", "!.next/cache/**"]
|
"outputs": [".next/**", "!.next/cache/**"],
|
||||||
},
|
"env": [
|
||||||
"check-types": {
|
"DATABASE_URL",
|
||||||
"dependsOn": ["^check-types"]
|
"BETTER_AUTH_SECRET",
|
||||||
},
|
"UPSTASH_REDIS_REST_URL",
|
||||||
"dev": {
|
"UPSTASH_REDIS_REST_TOKEN"
|
||||||
"persistent": true,
|
]
|
||||||
"cache": false
|
},
|
||||||
}
|
"check-types": {
|
||||||
|
"dependsOn": ["^check-types"]
|
||||||
|
},
|
||||||
|
"dev": {
|
||||||
|
"persistent": true,
|
||||||
|
"cache": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user