A simplistic blackjack client, made with angularjs and some other things.
To get you started you can simply clone the the repository and install the dependencies:
NodeJS, npm and git are required.
Project is preconfigured to automatically install required dependencies, simply:
npm install
You can install bower
, jade
and node-sass
globally if you so desire.
Behind the scenes this will also call bower install
, which sets up AngularJS dependencies.
node_modules
- contains the npm packages for the tools we needapp/bower_components
- contains the angular framework files
Local sass
and jade
files need to be compiled to css
and html
, do so by running:
npm run build
We have preconfigured the project with a simple development web server. The simplest way to start this server is:
npm start
Now browse to the app at http://localhost:8000/app/index.html
.