-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.json
28 lines (28 loc) · 804 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
{
"name": "go-gin-wrapper",
"description": "web framework based on gin-gonic/gin and reverse proxy",
"keywords": [ "golang", "go-gin", "hiromaily" ],
"repository": "https://github.com/hiromaily/go-gin-wrapper",
"logo": "https://raw.githubusercontent.com/hiromaily/go-gin-wrapper/master/gopher.png",
"website": "https://github.com/hiromaily/go-gin-wrapper",
"success_url": "/",
"env" : {
"GO_GIN_CONF": {
"description": "config path",
"value": "${GOPATH}/src/github.com/hiromaily/go-gin-wrapper/configs/settings.toml"
},
"ENC_KEY": {
"description": "encode key",
"value": ""
},
"ENC_IV": {
"description": "encode key(IV)",
"value": ""
}
},
"image": "heroku/go",
"addons": [
"cleardb",
"heroku-redis:hobby-dev"
]
}