-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkosuke.config.json
More file actions
53 lines (53 loc) · 1.64 KB
/
Copy pathkosuke.config.json
File metadata and controls
53 lines (53 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
{
"preview": {
"services": {
"nextjs": {
"type": "bun",
"directory": ".",
"is_entrypoint": true,
"external_connection_variable": "NEXT_PUBLIC_APP_URL",
"dbMigrateCommand": "db:migrate",
"dbSeedCommand": "db:seed",
"develop_command": "bun run dev",
"deploy_command": "bun run build && bun run start"
},
"engine": {
"type": "python",
"directory": "./engine",
"connection_variable": "ENGINE_BASE_URL",
"develop_command": "uvicorn main:app --host 0.0.0.0 --port 8000 --reload",
"deploy_command": "uvicorn engine.main:app --host 0.0.0.0 --port 8000"
},
"worker": {
"type": "bun",
"directory": ".",
"develop_command": "workers:dev",
"deploy_command": "workers:start"
}
},
"storages": {
"postgres": {
"type": "postgres",
"connection_variable": "POSTGRES_URL"
},
"redis": {
"type": "redis",
"connection_variable": "REDIS_URL"
}
},
"environment": {
"GOOGLE_AI_API_KEY": "replace-me",
"BETTER_AUTH_SECRET": "mysecretusedbythesandoxenviornment",
"RESEND_API_KEY": "replace-me",
"RESEND_FROM_EMAIL": "replace-me",
"RESEND_FROM_NAME": "replace-me",
"RESEND_REPLY_TO": "replace-me",
"STRIPE_SECRET_KEY": "replace-me",
"STRIPE_PUBLISHABLE_KEY": "replace-me",
"STRIPE_WEBHOOK_SECRET": "replace-me",
"STRIPE_SUCCESS_URL": "http://localhost:3000/settings/billing",
"STRIPE_CANCEL_URL": "http://localhost:3000/settings/billing",
"ENCRYPTION_KEY": "replace-me"
}
}
}