How to run app locally
First: Go to terminal
npm run dev:client
The in another tab or window
npm run dev:server
The client should be up on localhost:3000 The server should be up on localhost:3100
You mainly want to mess around in localhost:3000
===
How to create a production build for a real server
npm run build
This will create compressed js, css, and html files for production use. It makes the website much faster.
Log in or sign up for Devpost to join the conversation.