@@ -21,20 +21,20 @@ start-rabbitmq-cluster:
21
21
cd rabbitmq-cluster && make start
22
22
@echo " ✅ RabbitMQ cluster started."
23
23
24
- start-rabbitmq :
25
- @echo " 📡 Starting standalone RabbitMQ container on 'hobbit' network..."
26
- @docker network inspect hobbit > /dev/null || (echo " ❌ Network 'hobbit' not found. Run 'make create-networks' first." && exit 1)
27
- @docker rm -f hobbit-rabbitmq > /dev/null 2>&1 || true
28
- @docker run -d \
29
- --name hobbit-rabbitmq \
30
- --network hobbit \
31
- -p 5672:5672 \
32
- -p 15672:15672 \
33
- rabbitmq:3-management
34
- @docker network connect hobbit-core hobbit-rabbitmq
35
- @echo " ✅ RabbitMQ is running at:"
36
- @echo " AMQP: amqp://localhost:5672"
37
- @echo " Management: http://localhost:15672 (user: guest, pass: guest)"
24
+ # start-rabbitmq:
25
+ # @echo "📡 Starting standalone RabbitMQ container on 'hobbit' network..."
26
+ # @docker network inspect hobbit >/dev/null || (echo "❌ Network 'hobbit' not found. Run 'make create-networks' first." && exit 1)
27
+ # @docker rm -f hobbit-rabbitmq >/dev/null 2>&1 || true
28
+ # @docker run -d \
29
+ # --name hobbit-rabbitmq \
30
+ # --network hobbit \
31
+ # -p 5672:5672 \
32
+ # -p 15672:15672 \
33
+ # rabbitmq:3-management
34
+ # @docker network connect hobbit-core hobbit-rabbitmq
35
+ # @echo "✅ RabbitMQ is running at:"
36
+ # @echo " AMQP: amqp://localhost:5672"
37
+ # @echo " Management: http://localhost:15672 (user: guest, pass: guest)"
38
38
start-dev-platform :
39
39
docker-compose -f docker-compose-dev.yml up -d
40
40
@@ -94,7 +94,7 @@ run-platform-elk:
94
94
# cd hobbit-gui/gui-client && sh -c 'test "$$TRAVIS" = "true" && npm --quiet ci; true' && sh -c 'test "$$TRAVIS" = "true" || npm --quiet install; true' && npm --quiet run lint && npm --quiet run build-prod
95
95
# cd hobbit-gui/gui-serverbackend && mvn --quiet --update-snapshots clean test
96
96
97
- test : create-networks install-parent-pom start-rabbitmq
97
+ test : create-networks install-parent-pom
98
98
@echo " 🔧 Running tests in platform-controller..."
99
99
make --directory=platform-controller test
100
100
0 commit comments