NodeJS
v14+ installedyarn
installed globally (npm install -g yarn
)
Install the backend dependencies:
cd backend && yarn
Install the frontend dependencies
cd frontend && yarn
You are good to go !
- Open two different terminals (one for the backend and the other the frontend)
- In the first terminal, start the backend by running:
cd backend && yarn start
Check that the backend is running by visiting: http://localhost:8000. A website should appear with some API docs.
- In the second terminal, start the frontend by running:
cd frontend && yarn start
Check that the frontend is running by visiting: http://localhost:3000.
This project supports hot reloading. Each time a file is modified in the frontend, the server will automatically reload the required code.