fix: correctly execute make serve

This commit is contained in:
cătălin 2025-03-06 18:23:33 +01:00
commit 740a1fc78f
No known key found for this signature in database
2 changed files with 25 additions and 1 deletions

View file

@ -2,6 +2,30 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.3.0] - 2025-03-06
### 🚀 Features
- Remove !h and make the bot have an in-memory dict of greeted users instead of using the backoff service
- Add UpdateVersionAction
- Add retry capabilities to the bot
## [0.2.9] - 2025-02-24
### 🐛 Bug Fixes
- Update token refresh to use object attributes instead of dict access
## [0.2.8] - 2025-02-24
### 🐛 Bug Fixes
- Retrieve user profile after refreshing twitch creds
### ⚙️ Miscellaneous Tasks
- Update to v0.2.6
## [0.2.7] - 2025-02-13 ## [0.2.7] - 2025-02-13
### 🐛 Bug Fixes ### 🐛 Bug Fixes

View file

@ -19,7 +19,7 @@ tests:
uv run coverage xml uv run coverage xml
serve: serve:
uv run python -m src.apps.httpapi.litestar.main uv run uvicorn src.apps.httpapi.litestar.main:app
build: build:
docker build . -t git.roboces.dev/catalin/$(PROJECT_NAME):$(PROJECT_TAG) --target $(PROJECT_TARGET) docker build . -t git.roboces.dev/catalin/$(PROJECT_NAME):$(PROJECT_TAG) --target $(PROJECT_TARGET)