KoC Mobile Application

Mobile front-end to the online MMORPG Kings Of Chaos (built with Ionic)

Download as .zip Download as .tar.gz View on GitHub

KoC Mobile Application

Demo: https://vimeo.com/124733714
Get it on Android
Get it on iOS (iPhone/iPad)

This library is the UI component of a set of 3 libraries, as shown in the diagram below:

koc-ionic
koc-api
node-koc

Relations between the libraries

Pre-requisites

You need NodeJS, cordova, ionic and bower

$ npm install -g cordova
$ npm install -g ionic
$ npm install -g bower

Prepare

$ git clone https://github.com/ThomasDalla/koc-ionic
$ cd koc-ionic
$ npm install
$ bower install

Test

$ ionic serve --lab

Note: if testing on a web browser, you need a local running instance of the back-end:

$ git clone https://github.com/ThomasDalla/koc-api
$ cd koc-api
$ npm install
$ node server
> Magic happens on port 3000

You don't need it if running on iOS/Android, as per below.

iOS

$ ionic build ios
$ ionic emulate ios -l -c # on emulator (fast)

Android

ionic build android
ionic emulate android -l -c # on emulator (slow)
ionic run android --device  # on device (fast)