Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 759 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 759 Bytes

client

Instructions for dev mode

  1. Clone repo
  2. Install with npm i
  3. Start in dev mode with npm run dev.
  4. This will use the development package concurrently to run the front end and back end simultaneously. Theu run on different ports and proxied using package.json.
  5. Add the token query string parameter to the url e.g. https://localhost:3000/?token=10000.
  6. Connect Sollet wallet and Sign Transaction.'

Generating a build

  1. Generate a build with npm run build.
  2. Use npm start to run in production mode.
  3. Production mode doesn't use concurrently because only the server is running and it serves the production built React app from the /build folder.
  4. Go to port 500 instead: https://localhost:3000/?token=10000.