/codingdojo-angularjs-src

A small tutorial in french about the magik of AngularJS

Primary LanguageJavaScript

Podcast hub mockups

Use Angularjs-bootstrap https://github.com/k3z/angularjs-bootstrap.

Prerequisite

Bower and Grunt. depends on Node and npm. My blog post (in french) explain how to use Bower and Grunt in an web project.

Installing Bower

Bower is installed globally using npm:.

$ npm install -g bower

Installing Grunt

Install Grunt's command line interface (CLI). Grunt will be only installed in your project folder.

$ npm install -g grunt-cli

Installing angularjs-bootstrap

Checkout the project.

$ git clone https://github.com/k3z/angularjs-bootstrap.git

Run Bower to download dependencies

$ cd <project-root>/
$ bower install

Bower components are now in www/assets/components/

Run Grunt to initialize project

$ cd <project-root>/
$ npm install
$ grunt

Development and production files are now in www/assets/build/

Grunt can observe you files and execute somme task automaticaly.

To run Grunt in background

$ grunt watch

You can now build an AngularJS-Bootstrap project.