Initial Upload
Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled

This commit is contained in:
2025-12-17 12:32:50 +13:00
commit 3015f48118
471 changed files with 141143 additions and 0 deletions

89
turbo.json Normal file
View File

@@ -0,0 +1,89 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**", ".expo/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"lint:fix": {
"dependsOn": ["^build"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"test:all": {
"dependsOn": ["^build"],
"outputs": []
},
"test:unit": {
"dependsOn": ["^build"],
"outputs": []
},
"test:services": {
"dependsOn": ["^build"],
"outputs": []
},
"test:routes": {
"dependsOn": ["^build"],
"outputs": []
},
"test:security": {
"dependsOn": ["^build"],
"outputs": []
},
"test:integration": {
"dependsOn": ["^build"],
"outputs": []
},
"test:coverage": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"test:unit:coverage": {
"dependsOn": ["^build"],
"outputs": ["coverage/unit/**"]
},
"test:services:coverage": {
"dependsOn": ["^build"],
"outputs": ["coverage/services/**"]
},
"test:routes:coverage": {
"dependsOn": ["^build"],
"outputs": ["coverage/routes/**"]
},
"test:watch": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:studio": {
"cache": false,
"persistent": true
}
}
}