Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/nerdfiles/angularamd-sample
- Owner: nerdfiles
- Created: 2020-04-06T17:55:26.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-25T23:47:27.000Z (over 2 years ago)
- Last Synced: 2024-11-21T05:15:39.807Z (2 months ago)
- Topics: angularamd, angularjs, cordova, gruntjs, requirejs, restangular, ui-router
- Language: JavaScript
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
```