Add installation instructions for Ubuntu

This commit is contained in:
Frédéric Guillot 2014-04-20 11:04:54 -04:00
parent a04ecbde77
commit 3e1114ae65
2 changed files with 23 additions and 0 deletions

View File

@ -66,6 +66,7 @@ Documentation
### Technical details
- [Installation instructions](docs/installation.markdown)
- [Installation on Ubuntu](docs/ubuntu-installation.markdown)
- [Installation on Debian](docs/debian-installation.markdown)
- [Installation on Centos](docs/centos-installation.markdown)
- [Upgrade Kanboard to a new version](docs/update.markdown)

View File

@ -0,0 +1,22 @@
How to install Kanboard on Ubuntu?
==================================
Ubuntu 14.04 LTS
----------------
Install Apache and PHP:
```bash
sudo apt-get update
sudo apt-get install -y php5 php5-sqlite unzip
```
Install Kanboard:
```bash
cd /var/www/html
sudo wget http://kanboard.net/kanboard-VERSION.zip
sudo unzip kanboard-VERSION.zip
sudo chown -R www-data:www-data kanboard/data
sudo rm kanboard-VERSION.zip
```