Skip to content

milosilic/coding-serbia-angularjs-workshop

 
 

Repository files navigation

Coding Serbia 2014 - AngularJS workshop repository

This is the repository used in the AngularJS workshop at Coding Serbia 2014. Participants use it as a starting point and extend the existing AngularJS app in this repo with new features. See http://codecentric.github.io/coding-serbia-angularjs-workshop/ for more info.

This is a fork of https://github.com/codecentric/movie-database-node/.

System requirements

*Make sure that you have node.js with NPM installed on your machine.

This project uses a standard node.js module descriptor (package.json) and Grunt as a tool for test execution and static source code analysis. To install the project's dependencies, simply run npm install in the project's root directory. This will make sure that the development tools are locally installed.

To make use of Grunt, you further need to have its CLI tool on your path.

npm install -g grunt-cli

The most useful Grunt tasks currently is test for test execution and dev to run a development mode. To execute these tasks, simple call Grunt:

grunt test

or

grunt dev

respectively.

The development mode will automatically spin up a server which will be restarted upon file changes. Furthermore all unit tests will be executed whenever you change a file.

Automatically restarting the express server on file changes

You can stop reading right now when you are using the grunt dev task. The task automatically restarts the server for you.

Automatically restarting the server on file changes is desirable as this increases your development pace. Supervisor can help you with this.

# To install supervisor
npm install -g supervisor

# Then run the server
supervisor src/server.js

License (MIT)

Copyright (c) 2013-2014 codecentric AG

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.8%
  • CSS 0.2%