-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathapp.json
More file actions
71 lines (71 loc) · 1.54 KB
/
app.json
File metadata and controls
71 lines (71 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "kernelboard",
"description": "Kernelboard - GPU kernel development platform",
"repository": "https://github.com/your-org/kernelboard",
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0"
},
{
"plan": "heroku-redis:mini"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
],
"env": {
"SECRET_KEY": {
"generator": "secret"
},
"FLASK_DEBUG": {
"value": "false"
},
"DISCORD_BOT_TOKEN": {
"required": false,
"description": "Discord bot token for fetching scheduled events (optional for previews)"
},
"DISCORD_GUILD_ID": {
"required": false,
"description": "Discord server/guild ID (optional for previews)"
},
"DISCORD_CLIENT_ID": {
"required": false,
"description": "Discord OAuth2 client ID (optional for previews)"
},
"DISCORD_CLIENT_SECRET": {
"required": false,
"description": "Discord OAuth2 client secret (optional for previews)"
},
"DISCORD_CLUSTER_MANAGER_API_BASE_URL": {
"required": false,
"description": "GPU cluster manager API URL"
}
},
"environments": {
"review": {
"addons": [
"heroku-postgresql:essential-0",
"heroku-redis:mini"
],
"env": {
"FLASK_DEBUG": {
"value": "true"
}
}
}
},
"scripts": {
"postdeploy": "echo 'Review app deployed successfully'"
}
}