mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-13 15:35:28 +03:00
4d6c688bf0
Some app.json updates to consider
28 lines
665 B
JSON
28 lines
665 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": {
|
|
"AUTH_USER": {
|
|
"description": "A username to log into pgweb.",
|
|
"value": "admin"
|
|
},
|
|
"AUTH_PASS": {
|
|
"description": "The login password. Please change this.",
|
|
"generator": "secret"
|
|
}
|
|
}
|
|
}
|