mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 00:08:27 +00:00
61 lines
1.2 KiB
JSON
61 lines
1.2 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",
|
|
"REDIS_HOST",
|
|
"REDIS_PORT",
|
|
"REDIS_TLS_DISABLED",
|
|
"NEO4J_URI",
|
|
"NEO4J_USERNAME",
|
|
"NEO4J_PASSWORD",
|
|
"OPENAI_API_KEY"
|
|
]
|
|
}
|