diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-04-06 10:54:58 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-04-06 10:54:58 -0700 |
commit | 0b306fa60ad84ea077111e0ff7b59208ba7bc8a3 (patch) | |
tree | 5d8941b5950ede2db8ca3fba0213792db0f07a50 /doc/en_US/heroku.markdown | |
parent | ac11220a1aa7ae30b8827d9bbf221888d3edd0a7 (diff) |
Move documentation to https://docs.kanboard.org/
Diffstat (limited to 'doc/en_US/heroku.markdown')
-rw-r--r-- | doc/en_US/heroku.markdown | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/doc/en_US/heroku.markdown b/doc/en_US/heroku.markdown deleted file mode 100644 index fa8d29b9..00000000 --- a/doc/en_US/heroku.markdown +++ /dev/null @@ -1,43 +0,0 @@ -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/kanboard/kanboard) - -Requirements ------------- - -- Heroku account, you can use a free account -- Heroku command line tools installed - -Manual instructions -------------------- - -```bash -# Get the last development version -git clone https://github.com/kanboard/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 ------------ - -Local disk storage on Heroku is ephemeral: - -- Uploaded files are not persistent after a restart. You may want to install a plugin to store your files in a cloud storage provider like [Amazon S3](https://github.com/kanboard/plugin-s3). -- Plugins installed via the web interface are stored on the local filesystem. You should include and deploy plugins with your own copy of Kanboard. - -Some features of Kanboard require that you run [a daily background job](cronjob.markdown). |