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 [email protected]:saikarthikreddyginni/react-boilerplate.git
- From the cloned directory run
npm install
- Make a copy of
.env-example
and rename it to.env
- Set the appropriate values to the env variables in
.env
file - Run
npm run dev
The app will run on http://localhost:3000
To run the code on production.
- Run
npm run test
to run all the tests - Run
npm run build
to build the app - Run
npm run start
to 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.