603ffbc426
* docs: add supabase guide * feat: add support for external connection poolers * chore: use .env symlink in database package * chore: remove database .env.example * docs: finish supabase pooling section * docs: fix small typo * docs: replace prisma with app wording * docs: fix up supabase pooling section * fix: deleted too much in contributing docs * docs: change pooling heading * docs: reduce linux shaming * docs: include direct connection url in fly.io
103 lines
1.9 KiB
JSON
103 lines
1.9 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
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"i: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
|
|
},
|
|
"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"
|
|
]
|
|
}
|