Simple todo app that uses technologies like: React, Redux, Nodejs, Express, mongodb (mlab), antd.
# Clone the repository
git clone https://github.com/fatihturgut/react-redux-nodejs-todo-app.git
# Go inside the directory
cd react-redux-nodejs-todo-app
# Install dependencies
yarn (or npm install)
# Start development server
yarn dev (or npm run dev)
# Build for production
yarn build (or npm run build)
# Start production server
yarn start (or npm start)
# NPM_CONFIG_PRODUCTION to true by default to install production dependencies only. If you would like to install devDependencies, you can disable production mode:
heroku config:set NPM_CONFIG_PRODUCTION=false