The backend uses Express.js. Start with (on port 3001):
npm run dev
The frontend, built with nextjs, requires a .env.local file with
NEXT_PUBLIC_SERVER_API_URL=serverlink
(eg http://localhost:3001/v1/)
make sure to add /v1/ at the end as it is used in backend
Start the frontend with:
npm run dev
