feat: add migrations, api bot endpoints and revamp the whole twitch backend by making use of twitchio

This commit is contained in:
cătălin 2024-12-17 17:55:02 +01:00
commit 4c534de47b
No known key found for this signature in database
45 changed files with 1718 additions and 1109 deletions

View file

@ -32,8 +32,13 @@ COPY --chown=$USERNAME pyproject.toml uv.lock Makefile README.md ./
RUN uv sync
COPY --chown=$USERNAME src/ src/
COPY --chown=$USERNAME migrations/ migrations/
FROM base AS serve
CMD ["make", "serve"]
CMD ["make", "serve"]
FROM base AS migrate
CMD ["make", "migrate"]