Material Design Template used to develop the Cameroon Programming Contest (CPC) 2015 site.
The CPC is a competition where coders use algorithms to solve problems within a specific timeframe.
It takes place on October 10th 2015 at the IT centre of the University of Buea, cameroon.
Demo of the site can be found here: http://vg.am/devfest
- Fork this repo and clone locally.
- Install Node.js.
- Run
npm install -g gulp bower && npm install && bower install
from the root of the folder.
Project dependencies:
- Node.js used to run JavaScript tools from the command line.
- npm, the node package manager, installed with Node.js and used to install Node.js packages.
- gulp, a Node.js-based build tool.
- bower, a Node.js-based package manager used to install front-end packages (like Polymer).
To install dependencies:
- Check your Node.js version.
node --version
The version should be 0.12.x or above.
-
If you don't have Node.js installed, or you have a lower version, go to nodejs.org and click on the big green Install button.
-
Install
gulp
andbower
globally.
npm install -g gulp bower
This lets you run gulp
and bower
from the command line.
- Install the projects's local
npm
andbower
dependencies.
cd cameroonpc && npm install && bower install
This installs the element sets and tools the hoverboard template requires to build and serve apps.
- To run the code and see the changes you've made, just open the index.html file in a browser OR on the terminal run
firefox index.html