Jump starting your app development with Angular Seed
In the previous examples, we have been using Yeoman to scaffold our application. For this exercise, we will use the angular-seed
project as a skeleton, on which we will start building our application.
The angular-seed
project is available on GitHub and is maintained by the core AngularJS Development team, so we can be assured that it is up to date.
Let's create a folder named abo
, short for Angular Box Office, and download the forked angular-seed
project from the following URL:
https://github.com/areai51/angular-seed
You can choose to either download the ZIP file or clone it using Git and by typing in the following command in the terminal:
git clone https://github.com/areai51/angular-seed.git
Note
The original angular-seed
project on the GitHub project, which is at https://github.com/angular/angular-seed, is constantly evolving with minor changes being committed in all the time. We use the preceding forked version to ensure that the...