Skip to content

rsjung0320/doshare-front

Repository files navigation

Do Share! Built with Grunt Build Status

This project is generated with yo angular generator version 0.15.1.

Generators

Available generators:

App

Sets up a new AngularJS app, generating all the boilerplate you need to get started. The app generator also optionally installs Bootstrap and additional AngularJS modules, such as angular-resource (installed by default).

Example:

yo angular

Route

Generates a controller and view, and configures a route in app/scripts/app.js connecting them.

Example:

yo angular:route myroute

Produces app/scripts/controllers/myroute.js:

angular.module('myMod').controller('MyrouteCtrl', function ($scope) {
  // ...
});

Produces app/views/myroute.html:

<p>This is the myroute view</p>

Explicitly provide route URI

Example:

yo angular:route myRoute --uri=my/route

Produces controller and view as above and adds a route to app/scripts/app.js with URI my/route

Build & development

Run grunt for building and grunt serve for preview.

Testing

Preinstall npm install karma grunt-karma karma-phantomjs-launcher karma-jasmine jasmine-core --save-dev

Running grunt test will run the unit tests with karma.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published