CS166 Final Project Frontend Setup Instructions Clone the repository Navigate to cs166-project/frontend Run npm i Run npm run dev Go to site at http://localhost:5173 Remark: Ensure backend is up for full functionality. Backend Setup Instructions Clone the repository (If you already did, then ignore this step) Navigate to cs166-project/backend Create a .env file Write DATABASE_URL=postgresql://user:password@db:5432/pizzastore in the .env file Run the database container from the docker-compose file in project root. (Command: docker compose -f 'docker-compose.yml' up -d --build 'db') Wait for database to start up. Run the backend container from the docker-compose file in project root. (Command: docker compose -f 'docker-compose.yml' up -d --build 'backend') Wait for backend to start up. Remark: We used the VSCode docker plugin to run the