-
Notifications
You must be signed in to change notification settings - Fork 1
/
turbo.json
75 lines (75 loc) · 1.5 KB
/
turbo.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"db:generate": {
"inputs": ["drizzle/schema.ts"],
"cache": false
},
"db:reset": {
"inputs": ["drizzle/schema.ts"],
"cache": false
},
"db:seed": {
"inputs": ["drizzle/seed.ts"],
"cache": false
},
"db:push": {
"inputs": ["drizzle/schema.ts"],
"cache": false
},
"build:tailwind": {
"outputs": ["dist/output.css"],
"cache": false
},
"dev": {
"dependsOn": ["^db:generate", "^build:tailwind"],
"cache": false
},
"build": {
"dependsOn": ["^build", "^db:generate"],
"outputs": [".next/**"]
},
"lint": {},
"lint:fix": {},
"clean": {
"cache": false
},
"type-check": {
"dependsOn": ["^db:generate"],
"cache": false
}
},
"globalEnv": [
"DATABASE_URL",
"DB_HOST",
"DB_PORT",
"DB_USER",
"DB_PASSWORD",
"DB_NAME",
"REDIS_HOST",
"REDIS_PORT",
"REDIS_USER",
"REDIS_PASSWORD",
"ENV",
"NEXT_PUBLIC_APP_NAME",
"NEXT_PUBLIC_APP_URL",
"NODE_ENV",
"SESSION_SECRET",
"LEMON_SQUEEZY_API_KEY",
"BILLING_WEBHOOK_SECRET",
"S3_ACCESS_KEY",
"S3_SECRET_KEY",
"S3_BUCKET",
"S3_ENDPOINT",
"CI",
"VERCEL_URL",
"PORT",
"NODE_ENV",
"NEXT_PUBLIC_GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"NEXT_PUBLIC_GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"STRIPE_WEBHOOK_SECRET",
"STRIPE_API_KEY"
]
}