We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3324b9c commit 820b7c6Copy full SHA for 820b7c6
1 file changed
start-broker.bat
@@ -0,0 +1,10 @@
1
+@echo off
2
+rem Simplified Windows version of start-broker.sh
3
+rem Moquitto broker not supported, only Python Interopability Broker
4
+rem echo "Installing and starting Python Interop Broker."
5
+if not exist "paho.mqtt.testing" (
6
+ git clone https://github.com/eclipse/paho.mqtt.testing.git
7
+)
8
+copy "java_client_testing.conf" "paho.mqtt.testing/interoperability/java_client_testing.conf" /y
9
+cd paho.mqtt.testing/interoperability
10
+start python3 startbroker.py -c java_client_testing.conf
0 commit comments