https://github.com/tomasstankovic/mgr-server
Master degree thesis - SERVER APPLICATION
https://github.com/tomasstankovic/mgr-server
Last synced: 3 months ago
JSON representation
Master degree thesis - SERVER APPLICATION
- Host: GitHub
- URL: https://github.com/tomasstankovic/mgr-server
- Owner: tomasstankovic
- Created: 2016-11-20T19:45:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-19T08:01:49.000Z (about 8 years ago)
- Last Synced: 2025-01-13T15:49:09.458Z (5 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mgr-server
## Prerequisites
[Node.js](http://nodejs.org)
```
npm install -g gulp
npm install -g bower
```## Workflow
### Recommended dev workflow
> Run server, nodemon for automatically reload node.js app, livereloading when is jade, js or css changed and run JSHint. Automatic compilation of Stylus code and automatic creating of google deps file.```
gulp
```
Type `gulp` or `gulp server` and open localhost:8080 in your browser.### Production build
> Compilation of Stylus code, minifying CSS code, image minifying and run Google Closure Compiler.```
gulp build
```### Release build
> App building, version bump, commit and push to git repository.```
gulp release --version major|minor|patch
or
gulp release -v major|minor|patch
```### Error: spawn EMFILE on OSX
Call `ulimit -n 10240` or `gulp set-ulimit`.
For automatic setup on start, call `gulp server-ulimit` instead `gulp server`