Moon-API Installation Prerequisites Python >= 3.10 Installation Global environment Install dependencies pip install -r ./requirements.txt Run the API python -m hypercorn --bind '127.0.0.1:8008' --worker-class=trio 'api/main:app_factory()' Using venv Create venv python -m venv .venv Activate venv a. On Windows .venv\Scripts\activate b. Linux/MacOS source .venv/bin/activate Install dependencies pip install -r ./requirements.txt Run the API python -m hypercorn --bind '127.0.0.1:8008' --worker-class=trio 'api/main:app_factory()' Using Docker docker compose up