Skip to content

Commit

Permalink
Fixes fossasia#119 Configuration to deploy yaydoc to Heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
imujjwal96 committed Jun 17, 2017
1 parent dc18c38 commit e47815c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions Procfile
@@ -0,0 +1 @@
web: node bin/www
42 changes: 42 additions & 0 deletions app.json
@@ -0,0 +1,42 @@
{
"name": "Yaydoc",
"description": "Automatic Documentation Generation and Deployment Project.",
"keywords": [
"documentation",
"fossasia",
"node",
"sphinx"
],
"repository": "https://github.com/fossasia/yaydoc",
"env": {
"PYPANDOC_PANDOC": {
"description": "Set path for pandoc.",
"value": "~/vendor/pandoc/bin/pandoc"
},
"CALLBACKURL": {
"value": "/callback"
},
"SECRET": {
"generator": "secret"
},
"CLIENTID": {
"description": "Unique ClientID assigned while registering OAuth App in Github",
"required": true
},
"CLIENTSECRET": {
"description": "Unique ClientSecret assigned while registering OAuth App in Github",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
},
{
"url": "https://github.com/imujjwal96/heroku-buildpack-pandoc.git"
}
]
}
6 changes: 6 additions & 0 deletions requirements.txt
@@ -0,0 +1,6 @@
virtualenv
sphinx==1.5.5
recommonmark
pypandoc
pandocfilters
PyYaml

0 comments on commit e47815c

Please sign in to comment.