base con autenticacion, registro, modulo encuestas

This commit is contained in:
2025-06-16 12:02:22 -04:00
commit 475e0754df
411 changed files with 26265 additions and 0 deletions

29
turbo.json Normal file
View File

@@ -0,0 +1,29 @@
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"env": ["API_URL"]
},
"lint": {
"dependsOn": ["^lint"],
"cache": false,
"outputLogs": "full"
},
"dev": {
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"dependsOn": ["^start"]
},
"test": {
"cache": false,
"dependsOn": ["^test"]
}
}
}