& so it begins

This commit is contained in:
user
2026-02-28 14:50:04 +02:00
commit f00381f2b6
536 changed files with 26294 additions and 0 deletions

24
turbo.json Normal file
View File

@@ -0,0 +1,24 @@
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["build/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"prod": {
"cache": false
},
"db:migrate": {
"cache": false
},
"test": {
"cache": false
}
}
}