diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-29 20:00:53 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-29 20:00:53 -0400 |
commit | 6c711f696f73bc59813f6834ec241aef3b626cbd (patch) | |
tree | ded4f0e8c7f8c672414ff3f2f84eac0f6d9073e5 /doc/ubuntu-installation.markdown | |
parent | ef087f5e22df1a0d97babef26aaf9b8960ee6d5d (diff) |
Include documentation in the application
Diffstat (limited to 'doc/ubuntu-installation.markdown')
-rw-r--r-- | doc/ubuntu-installation.markdown | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/ubuntu-installation.markdown b/doc/ubuntu-installation.markdown new file mode 100644 index 00000000..5f9ee65b --- /dev/null +++ b/doc/ubuntu-installation.markdown @@ -0,0 +1,28 @@ +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 +``` + +In case your webserver was running restart to make sure the php modules are reloaded + +```bash +service apache2 restart +``` + +Install Kanboard: + +```bash +cd /var/www/html +sudo wget http://kanboard.net/kanboard-latest.zip +sudo unzip kanboard-latest.zip +sudo chown -R www-data:www-data kanboard/data +sudo rm kanboard-latest.zip +``` |