Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,12 @@ flowchart TD
```sh
find . -type f -name "pyproject.toml" -not -path "*/.venv/*" -execdir sh -c 'echo "🔄 Updating lock in $(pwd)"; uv lock' \;
```
# syncing in all directories, so uv cache is setup
```sh
find . -type f -name "pyproject.toml" -not -path "*/.venv/*" -execdir sh -c 'echo "🔄 syncing in $(pwd)"; uv sync' \;
```
```sh
find . -type f -name "pyproject.toml" -not -path "*/.venv/*" -execdir sh -c 'echo "🔄 Removing venv in $(pwd)"; rm -rf .venv/' \;
```
```sh
find . -type f -name "pyproject.toml" -not -path "*/.venv/*" -execdir sh -c 'echo "🔄 Removing Dockerfile.bak in $(pwd)"; rm Dockerfile.bak' \;
```
1 change: 1 addition & 0 deletions bases/bot_detector/worker_report/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ async def main():
## producer
report_producer = RepoReportsToInsertProducer(
bootstrap_servers=b_server,
max_async_calls=100,
)

# start kafka producers and consumers
Expand Down
1 change: 1 addition & 0 deletions docker-compose-debug.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# this docker-compose file is used for debugging and development purposes
services:
kafka:
image: apache/kafka:3.7.2
Expand Down
Loading