aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
Diffstat (limited to 'app.json')
-rw-r--r--app.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/app.json b/app.json
new file mode 100644
index 00000000..1c319feb
--- /dev/null
+++ b/app.json
@@ -0,0 +1,27 @@
+{
+ "name": "pyAggr3g470r",
+ "description": "A news aggregator with a web interface based on Flask. It can be deployed on Heroku or on a traditional server.",
+ "keywords": [
+ "aggregator",
+ "news",
+ "RSS"
+ ],
+ "website": "https://bitbucket.org/cedricbonhomme/pyaggr3g470r",
+ "repository": "https://github.com/cedricbonhomme/pyAggr3g470r",
+ "logo": "https://raw.githubusercontent.com/cedricbonhomme/pyAggr3g470r/master/pyaggr3g470r/static/img/logo.png",
+ "success_url": "/login",
+ "scripts": {
+ "postdeploy": "python db_create.py"
+ },
+ "env": {
+ "HEROKU": "1",
+ "WEB_CONCURRENCY": {
+ "description": "The number of processes to run.",
+ "value": "1"
+ }
+ },
+ "addons": [
+ "heroku-postgresql:dev"
+ ]
+}
+g \ No newline at end of file
bgstack15