Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1002 Bytes

heroku.markdown

File metadata and controls

38 lines (27 loc) · 1002 Bytes

Deploy Kanboard on Heroku

You can try Kanboard for free on Heroku. You can use this one click install button or follow the manual instructions below:

Deploy

Requirements

  • Heroku account, you can use a free account
  • Heroku command line tool installed

Manual instructions

# 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.