reactjs-fullstack

Reactjs fullstack project skeleton

This project is maintained by shrimpy

Reactjs Fullstack

Technology

Folder structure

/---
   |
   |------- packages
              |
              |-------- client (Reactjs application)
              |           
              |-------- server (Expressjs)
   

Commands

Init

yarn

Local development environment

yarn dev

Release Build

yarn build

Deploy to heroku

yarn build
heroku buildpacks:clear
heroku buildpacks:add heroku/nodejs 
# Keep devDependencies so that lerna will work
heroku config:set NPM_CONFIG_PRODUCTION=false
git push heroku master