forked from sheikyerbouti100/kosuke-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkosuke.config.example.json
More file actions
44 lines (44 loc) · 1.13 KB
/
kosuke.config.example.json
File metadata and controls
44 lines (44 loc) · 1.13 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
42
43
44
{
"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": {
"POSTGRES_URL": "value",
"REDIS_URL": "value",
"BETTER_AUTH_SECRET": "value",
"NEXT_PUBLIC_APP_URL": "value",
"STRIPE_PUBLISHABLE_KEY": "value",
"STRIPE_SECRET_KEY": "value",
"STRIPE_PRO_PRICE_ID": "value",
"STRIPE_BUSINESS_PRICE_ID": "value",
"STRIPE_WEBHOOK_SECRET": "value",
"STRIPE_SUCCESS_URL": "value",
"STRIPE_CANCEL_URL": "value",
"RESEND_FROM_EMAIL": "value",
"RESEND_FROM_NAME": "value",
"SENTRY_DSN": "value",
"RESEND_API_KEY": "__KSK__PREVIEW_RESEND_API_KEY"
}
}
}