mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 21:58:30 +00:00
64 lines
1.1 KiB
JSON
64 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": [ "^build" ],
|
|
"inputs": [ "$TURBO_DEFAULT$", ".env*" ],
|
|
"outputs": [
|
|
"dist/**",
|
|
"public/build/**",
|
|
"build/**",
|
|
"app/styles/tailwind.css",
|
|
".cache"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [ "^lint" ]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": [ "^check-types" ]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"db:generate": {
|
|
"cache": false
|
|
},
|
|
"db:migrate:deploy": {
|
|
"cache": false
|
|
},
|
|
"db:migrate:create": {
|
|
"cache": false,
|
|
"interactive": true
|
|
},
|
|
"db:studio": {
|
|
"cache": false
|
|
},
|
|
"generate": {
|
|
"dependsOn": [
|
|
"^generate"
|
|
]
|
|
}
|
|
},
|
|
"globalDependencies": [
|
|
".env"
|
|
],
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"REMIX_APP_PORT",
|
|
"CI",
|
|
"DATABASE_URL",
|
|
"DIRECT_URL",
|
|
"SESSION_SECRET",
|
|
"APP_ORIGIN",
|
|
"LOGIN_ORIGIN",
|
|
"POSTHOG_PROJECT_KEY",
|
|
"AUTH_GOOGLE_CLIENT_ID",
|
|
"AUTH_GOOGLE_CLIENT_SECRET",
|
|
"APP_ENV",
|
|
"APP_LOG_LEVEL",
|
|
"ENCRYPTION_KEY"
|
|
]
|
|
}
|