https://github.com/feliciousx/sldrbs
Swinburne Discussion Room Booking System
https://github.com/feliciousx/sldrbs
Last synced: about 1 year ago
JSON representation
Swinburne Discussion Room Booking System
- Host: GitHub
- URL: https://github.com/feliciousx/sldrbs
- Owner: FeliciousX
- Created: 2013-08-10T07:05:17.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-10T09:34:17.000Z (almost 13 years ago)
- Last Synced: 2025-02-04T21:15:56.590Z (over 1 year ago)
- Language: JavaScript
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SLDRBS
Swinburne Library Discussion Room Booking System
## Requirement
Install [node.js](http://nodejs.org/)
Install [generator-angular](https://github.com/yeoman/generator-angular) with npm from node:
```
npm install -g generator-angular
```
Install [karma](http://karma-runner.github.io/0.8/index.html) with npm from node:
```
npm install -g karma
```
Install [generator-karma](https://github.com/yeoman/generator-karma) with npm from node:
```
npm install generator-karma
```
Grunt and Bower package from node.js should be installed along when `generator-angular` and `generator-karma` was installed
Now check out [generator-angular](https://github.com/yeoman/generator-angular) and of course [AngularJS](http://angularjs.org/) itself for more info on how to develop.
## Development and Testing
To start server use grunt
```
grunt server
```
To start test server use karma
```
karma start
```
To run end-to-end test use the karma e2e configuration file
```
karma start karma-e2e-conf.js
```
### Happy Hacking!