mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 19:21:46 +03:00
5979272115
a) Consider using the secret generator so that deploys don't default to a known secret. b) tag it with golang
29 lines
731 B
JSON
29 lines
731 B
JSON
{
|
|
"name": "pgweb",
|
|
"description": "A web-based frontend to your Postgres database.",
|
|
"website": "https://github.com/sosedoff/pgweb",
|
|
"repository": "https://github.com/sosedoff/pgweb",
|
|
"logo": "https://raw.githubusercontent.com/sosedoff/pgweb/master/static/img/icon.png",
|
|
"success_url": "/",
|
|
"keywords": [
|
|
"postgres",
|
|
"database",
|
|
"golang",
|
|
"frontend"
|
|
],
|
|
"addons": [
|
|
"heroku-postgresql"
|
|
],
|
|
"env": {
|
|
"BUILDPACK_URL": "https://github.com/kr/heroku-buildpack-go",
|
|
"AUTH_USER": {
|
|
"description": "A username to log into pgweb.",
|
|
"value": "admin"
|
|
},
|
|
"AUTH_PASS": {
|
|
"description": "The login password. Please change this.",
|
|
"generator": "secret"
|
|
}
|
|
}
|
|
}
|