-
Notifications
You must be signed in to change notification settings - Fork 8
Gettings Started
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.
- Install the required packages
sudo apt-get install npm apache2 php5 git unzip -y
- Goto your root web server directory.
cd /var/www/html
- Remove the any default, preinstalled files.
rm index.html
- Download multikanban from the github repo.
git clone https://github.com/mezod/multikanban.git
- Install the requirements based on package.json
npm install
- Install bower
npm install -g bower
- Install requirements from bower.json
bower install
- Move the app folder to the root web server directory (/var/www/html/)
cd /var/www/html/app
mv * ../
rm app -R
- Create a folder in scripts/, called vendor.
mkdir /var/www/html/scripts/vendor/
- Move the bower_components folder contents to the newly created vendor folder.
cd /bower_components/
mv * /var/www/html/scripts/vendor/
- 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>
- test
- Unordered sub-list.
- Actual numbers don't matter, just that it's a number
- Ordered sub-list
- And another item.