diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-03-02 21:53:48 -0500 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-03-02 21:53:48 -0500 |
commit | c8714c01a4268f6aba4abe0461488e6c5b9df6ac (patch) | |
tree | c1e7922c9c0fce9a6a068c3e73e2aa6da7a9d230 /docs/debian-installation.markdown | |
parent | 1e9232643e907edfe9de05f3b04d3826a9b1ccd0 (diff) |
Add documentations
Diffstat (limited to 'docs/debian-installation.markdown')
-rw-r--r-- | docs/debian-installation.markdown | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/debian-installation.markdown b/docs/debian-installation.markdown new file mode 100644 index 00000000..04261520 --- /dev/null +++ b/docs/debian-installation.markdown @@ -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 +```
\ No newline at end of file |