You need to have Go, Node.js, installed on your computer.
Verify the tools by running the following commands:
go version
npm --version
node --versionStart a local PostgreSQL database on localhost:5432.
The database will be populated with test records from the
[server/database/db.go](db migrate) function.
Navigate to the server folder and start the back end:
cd server
go run server.goThe back end will serve on http://localhost:8080.
Navigate to the webapp folder, install dependencies,
and start the front end development server by running:
cd webapp
npm install
npm startThe application will be available on http://localhost:3000.