summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/installation.markdown15
-rw-r--r--docs/update.markdown11
2 files changed, 17 insertions, 9 deletions
diff --git a/docs/installation.markdown b/docs/installation.markdown
index 0da0ec97..3f051f99 100644
--- a/docs/installation.markdown
+++ b/docs/installation.markdown
@@ -9,8 +9,8 @@ Requirements
- PHP extensions required: mbstring and pdo_sqlite (don't forget to enable extensions)
- A web browser with HTML5 drag and drop support
-From the archive
-----------------
+From the archive (stable version)
+---------------------------------
1. You must have a web server with PHP installed
2. Download the source code and copy the directory `kanboard` where you want
@@ -22,11 +22,16 @@ From the archive
Note: The folder data is the location where Kanboard stores uploaded files as well as the Sqlite database.
-From the repository
--------------------
+From the repository (development version)
+-----------------------------------------
+
+You must install [composer](https://getcomposer.org/) to use this method.
1. `git clone https://github.com/fguillot/kanboard.git`
-2. Go to the third step just above
+2. `composer update`
+3. Go to the third step just above
+
+Note: This method will install the **current development version**, use at your own risk.
Security
--------
diff --git a/docs/update.markdown b/docs/update.markdown
index bcbd3e8d..c05f8ed0 100644
--- a/docs/update.markdown
+++ b/docs/update.markdown
@@ -3,8 +3,8 @@ Update
Important: **Always do a backup of your database before upgrading!**
-From the archive
-----------------
+From the archive (stable version)
+---------------------------------
1. Close your session (logout)
2. Rename your actual Kanboard directory (to keep a backup)
@@ -14,9 +14,12 @@ From the archive
6. Remove the old Kanboard directory
-From the repository
--------------------
+From the repository (development version)
+-----------------------------------------
1. Close your session (logout)
2. `git pull`
+3. `composer update`
3. Login and check if everything is ok
+
+Note: This method will install the **current development version**, use at your own risk.