-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
44 lines (43 loc) · 1.02 KB
/
Copy pathapp.json
File metadata and controls
44 lines (43 loc) · 1.02 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
{
"name": "Codebar Auth",
"description": "Authentication service for Codebar using Better Auth",
"repository": "https://github.com/codebar/auth",
"website": "https://auth.codebar.io",
"success_url": "/health",
"stack": "heroku-26",
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0",
"as": "DATABASE"
}
],
"env": {
"GITHUB_CLIENT_ID": {
"description": "GitHub OAuth App Client ID (create at https://github.com/settings/developers)",
"required": true
},
"GITHUB_CLIENT_SECRET": {
"description": "GitHub OAuth App Client Secret",
"required": true
},
"BETTER_AUTH_SECRET": {
"description": "Secret key for Better Auth session encryption",
"generator": "secret"
},
"CODEBAR_AUTH_URL": {
"description": "Base URL for auth service",
"value": "https://auth.codebar.io"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}