Preview:
app_preview.mp4
- Docker (Windows: https://docs.docker.com/desktop/install/windows-install/, MacOS: https://docs.docker.com/desktop/install/mac-install/)
- Node.JS + npm (https://nodejs.org/en/download/)
Do to the following to run the backend and frontend services (in two separated terminals).
- Execute Docker Desktop
- In a terminal, run
docker run --publish 8080:8080 fastapi
to start the Backend
- In a terminal (new one), execute the command
cd hackaton-frontend
to go in the folder "hackaton-frontend" and thennpm install
to install the dependencies for runnig the frontend - Once frontend dependencies installed, run
ng serve
(still in the folder "hackaton-frontend")