- Create a database named gymapp in pgAdmin
- Check that database details match the details in ./server/lib/db.ts
- Open a terminal in the ./server directory
- Seed database with
npm install
npm run seed
- Start the api server with
npm start
- Make sure the server is accessible on http://localhost:3000
- Open a second terminal in the ./client directory
- Start the client app with
npm install
npm run dev
- Open the url shown by the previous command
Me