-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkosuke.config.json
More file actions
41 lines (41 loc) · 1.18 KB
/
Copy pathkosuke.config.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"preview": {
"services": {
"nextjs": {
"type": "bun",
"directory": ".",
"is_entrypoint": true,
"external_connection_variable": "NEXT_PUBLIC_APP_URL"
},
"engine": {
"type": "python",
"directory": "./engine",
"connection_variable": "ENGINE_URL"
}
},
"storages": {
"postgres": {
"type": "postgres",
"connection_variable": "POSTGRES_URL"
},
"redis": {
"type": "redis",
"connection_variable": "REDIS_URL"
}
},
"environment": {
"BETTER_AUTH_SECRET": "mysecretusedbythesandoxenviornment",
"RESEND_API_KEY": "__KSK__RESEND_API_KEY",
"RESEND_FROM_EMAIL": "noreply@kosuke.ai",
"RESEND_FROM_NAME": "Kosuke Template",
"RESEND_REPLY_TO": "noreply@kosuke.ai",
"STRIPE_SECRET_KEY": "sk_test_xxx",
"STRIPE_PUBLISHABLE_KEY": "pk_test_xxx",
"STRIPE_PRO_PRICE_ID": "price_xxx",
"STRIPE_BUSINESS_PRICE_ID": "price_xxx",
"STRIPE_WEBHOOK_SECRET": "whsec_xxx",
"STRIPE_SUCCESS_URL": "http://localhost:3000/settings/billing",
"STRIPE_CANCEL_URL": "http://localhost:3000/settings/billing"
}
}
}