-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
36 lines (36 loc) · 958 Bytes
/
app.json
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
{
"name": "Fusion Auth Server",
"description": "FusionAuth provides authentication, authorization, and user management for any app: deploy anywhere, integrate with anything, in minutes.",
"logo": "https://fusionauth.io/assets/img/logo-white.svg",
"keywords": [
"database",
"api",
"auth",
"heroku",
"postgres",
"fusion"
],
"success_url": "/",
"website": "https://fusionauth.io",
"repository": "https://github.com/mickeymond/fusion-auth-heroku",
"env": {
"DATABASE_URL": {
"description": "Set External Database URL",
"value": "jdbc:postgresql://<host>:<port>/<database>"
},
"DATABASE_USERNAME": {
"description": "Set Database Username",
"value": "<database_username>"
},
"DATABASE_PASSWORD": {
"description": "Set Database Password",
"value": "<database_password>"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"stack": "container"
}