Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nerdfiles/angularamd-sample

With minor fixes.
https://github.com/nerdfiles/angularamd-sample

angularamd angularjs cordova gruntjs requirejs restangular ui-router

Last synced: 5 days ago
JSON representation

With minor fixes.

Awesome Lists containing this project

README

        

angularAMD-sample
=================

Sample App created using angularAMD

## Development
To setup and run this project, do the following:

```
npm install
grunt setup
grunt build
grunt devel
```

## optimised Using r.js
To create an `r.js` optimised version of the code in under the `build` directory. Note that JS script at this stage is
left in the un-minimized state. This will allow further testing making sure that optimised code is done correctly and
works.

```
grunt build
```

## Deploy
To create a final version to be deployed. The code will be source from the `build` directory and only the needed
files are copied and minified to the `dist` directory.

```
grunt deploy
```