Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tylerlh/poopchat_web
Poopchat web client app
https://github.com/tylerlh/poopchat_web
Last synced: about 2 months ago
JSON representation
Poopchat web client app
- Host: GitHub
- URL: https://github.com/tylerlh/poopchat_web
- Owner: TylerLH
- Created: 2014-05-09T19:40:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-10T22:12:26.000Z (over 10 years ago)
- Last Synced: 2024-04-15T02:45:17.401Z (9 months ago)
- Language: JavaScript
- Size: 1.29 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
poopchat
============## Development
To start developing in the project run:
```bash
gulp serve
```Then head to `http://localhost:3000` in your browser.
The `serve` tasks starts a static file server, which serves the AngularJS application, and a watch task which watches all files for changes and lints, builds and injects them into the index.html accordingly.
## Tests
To run tests run:
```bash
gulp test
```**Or** first inject all test files into `karma.conf.js` with:
```bash
gulp karma-conf
```Then you're able to run Karma directly. Example:
```bash
karma start --single-run
```## Production ready build - a.k.a. dist
To make the app ready for deploy to production run:
```bash
gulp dist
```Now there's a `./dist` folder with all scripts and stylesheets concatenated and minified, also third party libraries installed with bower will be concatenated and minified into `vendors.min.js` and `vendors.min.css` respectively.