Skip to main content

Building the Frontend

Clone the Repository

git clone git@github.com:SirBubbls/trajectory-trace.git
cd trajectory-trace

The frontend is located in the frontend directory of the repository.

Running the Development Server

npm install
npm run dev
danger

The local frontend deployment can only communicate with the local backend if the nginx reverse proxy is running locally and the frontend is accessed under port 8080 (http://localhost:8080). You can start the nginx container with docker compose up -d nginx.

Building the Frontend

npm install
npm run build