-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
41 lines (41 loc) · 1.05 KB
/
Copy pathturbo.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"dev": { "cache": false, "persistent": true },
"build": {
"cache": true,
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**", "build/**"],
"env": [
"NODE_ENV",
"DATABASE_URL",
"NEXTAUTH_SECRET",
"AUTH_SECRET",
"AUTH_TRUST_HOST",
"KAKAO_CLIENT_ID",
"KAKAO_CLIENT_SECRET",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"NEXTAUTH_URL",
"AUTH_URL",
"TOSS_SECRET_KEY",
"STRIPE_SECRET_KEY",
"STRIPE_WEBHOOK_ENABLED",
"RESEND_API_KEY",
"EMAIL_SERVER",
"EMAIL_FROM",
"SOCKET_SERVER_URL",
"NEXT_PUBLIC_SOCKET_URL",
"SOCKET_ADMIN_SECRET",
"REVALIDATE_SECRET"
]
},
"start": { "cache": false, "persistent": true },
"lint": {
"dependsOn": [],
"outputs": [],
"inputs": ["**/*.{ts,tsx,js,mjs}", "!**/*.d.ts", "!**/node_modules/**"]
},
"typecheck": { "outputs": [] }
}
}