- Create a virtual environment
- Install the Python dependencies with
pip install -r requirements.txt
- Copy the .env.example file as .env
cp .env.example .env
- Ensure that you fill in all the valid environment properties in the .env file.
- To run the service locally, use the following command:
uvicorn server:app --reload
- To run the service using Docker, use the following command:
sudo docker-compose up -d --build
- Ensure that you have Docker and Docker Compose installed