Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cminhho/generator-angular-boilerplate

Angular-boilerplate generator to help you getting started with a new project based on Angular Boilerplate
https://github.com/cminhho/generator-angular-boilerplate

Last synced: about 2 months ago
JSON representation

Angular-boilerplate generator to help you getting started with a new project based on Angular Boilerplate

Awesome Lists containing this project

README

        

# generator-angular-boilerplate [![npm version](https://badge.fury.io/js/generator-angular-boilerplate.svg)](http://badge.fury.io/js/generator-angular-boilerplate)

## Usage

### Create your project

Install the required tools: `yo`, `gulp`, `bower`
```
npm install -g yo gulp bower
```

Install `generator-angular-boilerplate`:
```
npm install -g generator-angular-boilerplate
```

Make a new directory, and `cd` into it:
```
mkdir angular-boilerplate && cd $_
```

Run `yo angular-boilerplate`, optionally passing an app name:
```
yo angular-boilerplate [app-name]
```

### Use Gulp tasks

* `gulp` or `gulp build` to build an optimized version of your application in `/dist`
* `gulp serve` to launch a browser sync server on your source files
* `gulp serve:dist` to launch a server on your optimized application
* `gulp test` to launch your unit tests with Karma
* `gulp test:auto` to launch your unit tests with Karma in watch mode
* `gulp protractor` to launch your e2e tests with Protractor
* `gulp protractor:dist` to launch your e2e tests with Protractor on the dist files

## Contributing

[Guidelines](CONTRIBUTING.md)

## License

MIT