You can install dependencies using poetry:
poetry installUse .env.example to setup .env
cp .env.example .env
nano .envUse auto formatting and linting:
make format lintStart the api locally:
uvicorn iucom.api.application:applicationStart jobs locally:
iucom-moodle-sync
iucom-telegram-syncStart with docker compose:
docker compose -f docker/docker-compose.yaml upBuild, push, pull, prune docker:
make build
make push
make pull
make prune