Setup app

This commit is contained in:
KMKoushik
2024-03-19 09:34:23 +11:00
parent 7ee4e89e5f
commit 9032efa9b2
71 changed files with 3199 additions and 5419 deletions

View File

@@ -3,10 +3,14 @@
"globalDependencies": [
"**/.env.*local"
],
"globalDotEnv": [
".env"
],
"pipeline": {
"build": {
"dependsOn": [
"^build"
"^build",
"db:generate"
],
"outputs": [
".next/**",
@@ -20,7 +24,19 @@
},
"dev": {
"cache": false,
"persistent": true
"persistent": true,
"dotEnv": [
".env"
],
"dependsOn": [
"db:generate"
]
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
}
}
}