Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 801 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 801 Bytes

Running locally

Prerequisites

Instructions

  1. Install package dependencies
npm install
  1. Configure config/default.json like so:
  server: {
    baseUrl: 'https://localhost:8080',
    api: ...
  1. Run npm start

Deploying to Heroku

Prerequisites

Instructions

rm -rf idin-client/.git
git init
heroku create -b https://github.com/mars/create-react-app-buildpack.git
git add .
git commit -m 'initialise react app'
git push heroku master
heroku open