Add documentations

This commit is contained in:
Frédéric Guillot
2014-03-02 21:53:48 -05:00
parent 1e9232643e
commit c8714c01a4
6 changed files with 113 additions and 128 deletions

View File

@@ -0,0 +1,17 @@
How to install Kanboard on Debian?
==================================
A quick setup procedure for Debian:
```bash
apt-get update
apt-get install -y php5 php5-sqlite
# If sqlite is not loaded by default, add the extension manually
echo 'extension=sqlite.so' >> /etc/php5/conf.d/sqlite.ini
cd /var/www/
wget http://kanboard.net/kanboard-VERSION.zip
unzip kanboard-VERSION.zip
chown -R www-data:www-data kanboard/data
```