7ff8f0ebab
* TaskListPresenter: if there are no tasks then don’t do stats queries * RunListPresenter, use BasePresenter and the read replica * Added populate script * Simplified the Runs list query, added live timer * Added TaskRun indexes for the RunList * Status can’t be null now we’re using the TaskRun status * Use defer so the page loads and shows a spinner * Improved the loading style * Get rid of latest run info from the tasks table super slow * Fix for the activity graph tooltip getting clipped * Added a code comment crediting the GitHub issue with the portal fix * Add search to the tasks list * Padding * Fix for the schedules columns not being UTC * Remove unused function
107 lines
2.0 KiB
JSON
107 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "public/build/**", "build/**", "app/styles/tailwind.css", ".cache"]
|
|
},
|
|
"build:db:seed": {
|
|
"outputs": ["prisma/seed.js"]
|
|
},
|
|
"webapp#start": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["public/build/**"]
|
|
},
|
|
"start": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["public/build/**"]
|
|
},
|
|
"db:generate": {
|
|
"cache": false
|
|
},
|
|
"db:migrate:deploy": {
|
|
"cache": false
|
|
},
|
|
"db:seed": {
|
|
"cache": false,
|
|
"dependsOn": ["build:db:seed"]
|
|
},
|
|
"db:studio": {
|
|
"cache": false
|
|
},
|
|
"db:populate": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"i:dev": {
|
|
"cache": false
|
|
},
|
|
"generate": {
|
|
"dependsOn": ["^generate"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"docker:build": {
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"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
|
|
},
|
|
"clean:sourcemaps": {
|
|
"cache": false
|
|
},
|
|
"storybook": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": [".env"],
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"REMIX_APP_PORT",
|
|
"CI",
|
|
"DATABASE_URL",
|
|
"DIRECT_URL",
|
|
"SESSION_SECRET",
|
|
"APP_ORIGIN",
|
|
"LOGIN_ORIGIN",
|
|
"POSTHOG_PROJECT_KEY",
|
|
"MAGIC_LINK_SECRET",
|
|
"AUTH_GITHUB_CLIENT_ID",
|
|
"AUTH_GITHUB_CLIENT_SECRET",
|
|
"FROM_EMAIL",
|
|
"REPLY_TO_EMAIL",
|
|
"RESEND_API_KEY",
|
|
"DEBUG",
|
|
"TRIGGER_LOG_LEVEL",
|
|
"TRIGGER_API_KEY",
|
|
"TRIGGER_API_URL",
|
|
"APP_ENV",
|
|
"APP_LOG_LEVEL"
|
|
]
|
|
}
|