91 lines
1.6 KiB
JSON
91 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [
|
|
"dist/**",
|
|
"public/build/**",
|
|
"build/**",
|
|
"app/styles/tailwind.css",
|
|
".cache"
|
|
]
|
|
},
|
|
"webapp#start": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["public/build/**"]
|
|
},
|
|
"start": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["public/build/**"]
|
|
},
|
|
"db:migrate:deploy": {
|
|
"outputs": []
|
|
},
|
|
"db:migrate:dev": {
|
|
"outputs": []
|
|
},
|
|
"db:push": {
|
|
"outputs": []
|
|
},
|
|
"db:seed": {
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"db:migrate:force": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"generate": {
|
|
"dependsOn": ["^generate"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"docker:build": {
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputs": []
|
|
},
|
|
"test:dev": {
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"test:e2e:dev": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"test:e2e:ci": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"env:pull": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": [".env"],
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"REMIX_APP_PORT",
|
|
"FLY_REGION",
|
|
"PRIMARY_REGION",
|
|
"CI",
|
|
"DATABASE_URL",
|
|
"SESSION_SECRET",
|
|
"APP_ORIGIN",
|
|
"POSTHOG_PROJECT_KEY"
|
|
]
|
|
}
|