Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CenterForCollectiveLearning/DIVE-frontend
Codebase for DIVE SPA using React and Redux
https://github.com/CenterForCollectiveLearning/DIVE-frontend
Last synced: 4 months ago
JSON representation
Codebase for DIVE SPA using React and Redux
- Host: GitHub
- URL: https://github.com/CenterForCollectiveLearning/DIVE-frontend
- Owner: CenterForCollectiveLearning
- License: gpl-3.0
- Created: 2015-09-02T07:27:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-29T13:51:00.000Z (over 6 years ago)
- Last Synced: 2024-06-22T16:59:21.953Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 26.7 MB
- Stars: 166
- Watchers: 25
- Forks: 48
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DIVE-frontend (dive-frontend)
> DIVE Frontend Codebase
## Installing packages
1. Run `npm install`
2. For packages requiring react@>=0.12.0 (griddle-react and svg-react-loader), find the corresponding packages in /node_modules and change the peerDependencies line in each package.json to "react": ">=0.12.0||0.14.0-rc1".## Running your project
The generated project includes a development server on port `3003`, which will rebuild the app whenever you change application code. To start the server, run:
```bash
$ npm start
```To run the server with the dev-tools enabled, run:
```bash
$ export API_URL=http://localhost:8081
$ export NODE_ENV=DEVELOPMENT
$ npm build
$ DEBUG=true npm start
```To build for production, this command will output optimized production code:
```bash
$ npm run build
```