diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-20 11:04:54 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-20 11:04:54 -0400 |
commit | 3e1114ae65fcaf663bea1fccc0070d2f27a3e43b (patch) | |
tree | 125485ce81a2270426f646cfe183e2b155601a91 | |
parent | a04ecbde778decfdea7200806a6b1144861ae05f (diff) |
Add installation instructions for Ubuntu
-rw-r--r-- | README.markdown | 1 | ||||
-rw-r--r-- | docs/ubuntu-installation.markdown | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown index 93752394..2d88cda4 100644 --- a/README.markdown +++ b/README.markdown @@ -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) diff --git a/docs/ubuntu-installation.markdown b/docs/ubuntu-installation.markdown new file mode 100644 index 00000000..38fa3e8d --- /dev/null +++ b/docs/ubuntu-installation.markdown @@ -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 +``` |