Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.1 KB

README.md

File metadata and controls

36 lines (25 loc) · 1.1 KB

👋 Hello! Welcome to our repo!

Local Deployment

Set up

To set up the environment for local development, do the following:

  1. Ensure that the Docker desktop application is running
  2. With the cloned repo as the current working directory, enter the following commands in the terminal:
# Initialize microservices
docker-compose up --build -d

# Serve frontend
cd frontend
npm i
npm run start
  1. To access the app, open a browser and navigate to localhost:3000

Tear down

  1. To stop serving the frontend, press the keys: CTRL + C
  2. To shut down the microservices, enter the following commands in the terminal:
cd ..
docker-compose down