Fix identation in app.json and add icon url

This commit is contained in:
Dan Sosedoff
2014-11-06 10:19:15 -06:00
parent 376ad001d3
commit ff5a3eea33

View File

@@ -1,27 +1,27 @@
{ {
"name": "pgweb", "name": "pgweb",
"description": "A web-based frontend to your Postgres database.", "description": "A web-based frontend to your Postgres database.",
"website": "https://github.com/sosedoff/pgweb", "website": "https://github.com/sosedoff/pgweb",
"repository": "https://github.com/sosedoff/pgweb", "repository": "https://github.com/sosedoff/pgweb",
"logo": "https://avatars1.githubusercontent.com/u/71051?v=2&s=400", "logo": "https://raw.githubusercontent.com/sosedoff/pgweb/master/static/img/icon.png",
"success_url": "/", "success_url": "/",
"keywords": [ "keywords": [
"postgres", "postgres",
"database", "database",
"frontend" "frontend"
], ],
"addons": [ "addons": [
"heroku-postgresql" "heroku-postgresql"
], ],
"env": { "env": {
"BUILDPACK_URL": "https://github.com/kr/heroku-buildpack-go", "BUILDPACK_URL": "https://github.com/kr/heroku-buildpack-go",
"AUTH_USER": { "AUTH_USER": {
"description": "A username to log into pgweb.", "description": "A username to log into pgweb.",
"value": "admin" "value": "admin"
}, },
"AUTH_PASS": { "AUTH_PASS": {
"description": "The login password. Please change this.", "description": "The login password. Please change this.",
"value": "pgweb" "value": "pgweb"
}
} }
} }
}