-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
34 lines (34 loc) · 831 Bytes
/
app.json
File metadata and controls
34 lines (34 loc) · 831 Bytes
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
{
"name": "Bast",
"description": "Open sourced web analytics, giving informations about your site traffics.",
"repository": "https://github.com/kooparse/bast",
"keywords": ["rust", "analytics"],
"stack": "container",
"addons": [
{
"plan": "heroku-postgresql"
}
],
"env": {
"DATABASE_URL": {
"required": false,
"description": "Address to the postgres database"
},
"HOSTNAME": {
"required": false,
"description": "Hostname of the server"
},
"PORT": {
"required": false,
"description": "Port of the server"
},
"JWT_SECRET": {
"description": "Jwt secret to encrypt passwords",
"generator": "secret"
},
"RUST_LOG": {
"description": "Information to print from the server",
"value": "actix_web=info"
}
}
}