summaryrefslogtreecommitdiff
path: root/docs/heroku.markdown
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-08-29 20:00:53 -0400
committerFrederic Guillot <fred@kanboard.net>2015-08-29 20:00:53 -0400
commit6c711f696f73bc59813f6834ec241aef3b626cbd (patch)
treeded4f0e8c7f8c672414ff3f2f84eac0f6d9073e5 /docs/heroku.markdown
parentef087f5e22df1a0d97babef26aaf9b8960ee6d5d (diff)
Include documentation in the application
Diffstat (limited to 'docs/heroku.markdown')
-rw-r--r--docs/heroku.markdown38
1 files changed, 0 insertions, 38 deletions
diff --git a/docs/heroku.markdown b/docs/heroku.markdown
deleted file mode 100644
index ea3c19f9..00000000
--- a/docs/heroku.markdown
+++ /dev/null
@@ -1,38 +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/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.