React Redux Boilerplate
Minimum Tested Versions
- node (v6.3.1)
- npm (v3.10.3)
These can be installed via homebrew in mac (brew upgrade && brew install node). NPM should be installed automatically when installing node. If upgrading through homebrew, make sure you run brew upgrade first.
Install node modules with npm install
- Clone the repo
git clone git@github.com:saikarthikreddyginni/react-boilerplate.git - From the cloned directory run
npm install - Make a copy of
.env-exampleand rename it to.env - Set the appropriate values to the env variables in
.envfile - Run
npm run dev
The app will run on http://localhost:3000
To run the code on production.
- Run
npm run testto run all the tests - Run
npm run buildto build the app - Run
npm run startto start the application in prod mode
Make a new feature branch off dev and create a pull request when ready. Always make sure you have the latest changes on dev before branching.