mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 09:01:13 +00:00
Add the first control-plane UI over the verified backend seam so exports, issued DAV credentials, and Finder instructions can be exercised from the running stack.
35 lines
721 B
JSON
35 lines
721 B
JSON
{
|
|
"$schema": "https://turborepo.dev/schema.json",
|
|
"ui": "tui",
|
|
"globalEnv": [
|
|
"BETTERNAS_CONTROL_PLANE_CLIENT_TOKEN",
|
|
"BETTERNAS_CONTROL_PLANE_PORT",
|
|
"BETTERNAS_CONTROL_PLANE_URL"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"format": {
|
|
"cache": false
|
|
},
|
|
"format:check": {
|
|
"dependsOn": ["^format:check"]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^test"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|