Skip to content
Kickball edited this page May 18, 2015 · 24 revisions

Welcome to the multikanban wiki!

This is my attempt at a gettings started page on the wiki, the following is how I got MultiKanBan working:

Note: I'm using Ubuntu 14 for this installation, although this should work with other similar distributions.

  1. Install the required packages

sudo apt-get install npm apache2 php5 git unzip -y

  1. Goto your root web server directory.

cd /var/www/html

  1. Remove the any default, preinstalled files.

rm index.html

  1. Download multikanban from the github repo.

git clone https://github.com/mezod/multikanban.git

  1. Install the requirements based on package.json

npm install

  1. Install bower

npm install -g bower

  1. Install requirements from bower.json

bower install

  1. Move the app folder to the root web server directory (/var/www/html/)

cd /var/www/html/app

mv * ../

rm app -R

  1. Create a folder in scripts/, called vendor.

mkdir /var/www/html/scripts/vendor/

  1. Move the bower_components folder contents to the newly created vendor folder.

cd /bower_components/

mv * /var/www/html/scripts/vendor/

  1. Change the following lines in index.html

from

<link rel="stylesheet" media="screen" href="/multikanban/app/styles/styles.css" type="text/css" />

to

<link rel="stylesheet" media="screen" href="styles/styles.css" type="text/css" />

and from

<script data-main="/multikanban/app/scripts/main.js" src="/multikanban/app/scripts/vendor/requirejs/require.js"></script>

to

<script data-main="scripts/main.js" src="scripts/vendor/requirejs/require.js"></script>
  1. test
  • Unordered sub-list.
  1. Actual numbers don't matter, just that it's a number
  2. Ordered sub-list
  3. And another item.
Clone this wiki locally