https://github.com/rangle/bridge-lcbo-app
https://github.com/rangle/bridge-lcbo-app
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/rangle/bridge-lcbo-app
- Owner: rangle
- License: mit
- Created: 2017-02-13T21:16:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-25T03:26:44.000Z (about 5 years ago)
- Last Synced: 2025-01-24T13:32:02.514Z (over 1 year ago)
- Language: RobotFramework
- Size: 1.14 MB
- Stars: 0
- Watchers: 7
- Forks: 6
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-starter
> Rangle.io official React + Redux starter
## npm scripts
### Dev
```bash
$ npm run dev
```
This runs a development mode server with live reload etc.
Open `http://localhost:8080` in your browser.
### Production
```bash
npm run build
npm start
```
This runs a production-ready express server that serves up a bundled and
minified version of the client.
Open `http://localhost:8080` in your browser.
### Tests
#### Single Run
```bash
$ npm run test
```
#### Watch Files
```bash
$ npm run test:watch
```
#### Coverage
Code coverage is generated automatically after a `npm run test` run (but not
`test:watch`).
#### Connecting to remote APIs
Both the devmode and production servers provide a way to proxy requests to
remote HTTP APIs. This can be useful for working around CORS issues when
developing your software.
Edit [this file](server/proxy-config.js) to mount such APIs at a given path.
## License
Copyright (c) 2015 rangle.io
[MIT License][MIT]
[MIT]: ./LICENSE "Mit License"