We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c5d9f commit 10b7d39Copy full SHA for 10b7d39
run_demo.sh
@@ -0,0 +1,11 @@
1
+#!/bin/sh
2
+# This script is used to run the demo application.
3
+# It starts the protoconf agent, which is responsible for managing the configuration.
4
+# Then it starts the demo application, which uses the protoconf agent to dynamically update its configuration.
5
+# Finally, it stops the protoconf agent after the demo application has finished running.
6
+
7
+pkill -9 protoconf >/dev/null 2>&1
8
+protoconf agent -dev tests/test_data/. &
9
+python demo_app.py
10
11
0 commit comments