forked from trotto/go-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
36 lines (36 loc) · 889 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": "Trotto go links",
"keywords": [
"productivity"
],
"website": "https://www.trot.to",
"repository": "https://github.com/trotto/go-links",
"logo": "https://www.trot.to/img/logos/trotto.svg",
"env": {
"FLASK_SECRET": {
"description": "A secret used to sign session cookies and CSRF tokens. One way to generate this is with: python -c 'import os; import base64; print(base64.b64encode(os.urandom(32)))'"
},
"GOOGLE_OAUTH_CLIENT_JSON": {
"description": "The JSON for a Google OAuth client (see https://www.trot.to/docs/deploy/creating-oauth-credentials)"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "12"
}
}
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}