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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ The server is build with FastAPI. For developement and testing, it may be useful
```bash
uv sync
source .venv/bin/activate
blueapi --config tests/system_tests/stomp.yaml serve # This will run on port 8000
uvicorn daq_queuing_service.app:app --port 8001
podman-compose -f tests/system_tests/compose.yaml up # Local rabbitmq
blueapi --config tests/test_data/test_blueapi_config.yaml serve # Local blueapi
uvicorn daq_queuing_service.app.app:app --port 8001 # Local queue service
```

<!-- README only content. Anything below this line won't be included in index.md -->
Expand Down
7 changes: 1 addition & 6 deletions tests/system_tests/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
include:
- ../../example-services/compose.yaml

services:
rabbitmq:
image: docker.io/rabbitmq:4.0-management
Expand All @@ -10,6 +7,4 @@ services:
- "15672:15672"
- "61613:61613"
volumes:
- type: bind
source: ./services/rabbitmq_plugins
target: /etc/rabbitmq/enabled_plugins
- ./services/rabbitmq_plugins:/etc/rabbitmq/enabled_plugins:ro,Z
1 change: 1 addition & 0 deletions tests/system_tests/services/rabbitmq_plugins
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[rabbitmq_management,rabbitmq_prometheus,rabbitmq_stomp,rabbitmq_mqtt].
Loading