58 lines
987 B
JSON
58 lines
987 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [
|
|
"**/.env.*local"
|
|
],
|
|
"globalDotEnv": [
|
|
".env"
|
|
],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build",
|
|
"db:generate"
|
|
],
|
|
"outputs": [
|
|
".next/**",
|
|
"!.next/cache/**"
|
|
],
|
|
"env": [
|
|
"DATABASE_URL",
|
|
"NEXTAUTH_URL",
|
|
"GITHUB_ID",
|
|
"GITHUB_SECRET",
|
|
"AWS_SECRET_KEY",
|
|
"AWS_ACCESS_KEY",
|
|
"APP_URL",
|
|
"SNS_TOPIC",
|
|
"NEXTAUTH_SECRET",
|
|
"NODE_ENV",
|
|
"VERCEL_URL",
|
|
"VERCEL",
|
|
"SKIP_ENV_VALIDATION",
|
|
"PORT"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^lint"
|
|
]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dotEnv": [
|
|
".env"
|
|
],
|
|
"dependsOn": [
|
|
"db:generate"
|
|
]
|
|
},
|
|
"db:generate": {
|
|
"cache": false
|
|
},
|
|
"db:push": {
|
|
"cache": false
|
|
}
|
|
}
|
|
} |