diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-12 22:25:44 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-12 22:25:44 -0500 |
commit | 46fd893bd6728031d5f4118f952bf6cce5017965 (patch) | |
tree | 0687f701cd35980395d653eb538810d6819a6883 /docs | |
parent | 6d61d0e751e30e7cdbe4ed077a347e43272eef8b (diff) |
Add Heroku one-click install button
Diffstat (limited to 'docs')
-rw-r--r-- | docs/heroku.markdown | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/heroku.markdown b/docs/heroku.markdown new file mode 100644 index 00000000..ea3c19f9 --- /dev/null +++ b/docs/heroku.markdown @@ -0,0 +1,38 @@ +Deploy Kanboard on Heroku +========================= + +You can try Kanboard for free on [Heroku](https://www.heroku.com/). +You can use this one click install button or follow the manual instructions below: + +[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/fguillot/kanboard) + +Requirements +------------ + +- Heroku account, you can use a free account +- Heroku command line tool installed + +Manual instructions +------------------- + +```bash +# Get the last development version +git clone https://github.com/fguillot/kanboard.git +cd kanboard + +# Push the code to Heroku (You can also use SSH if git over HTTP doesn't work) +heroku create +git push heroku master + +# Start a new dyno with a Postgresql database +heroku ps:scale web=1 +heroku addons:add heroku-postgresql:hobby-dev + +# Open your browser +heroku open +``` + +Limitations +----------- + +The storage on Heroku is ephemeral, that means uploaded files through Kanboard are not persistent after a reboot. |