Skip to content

Commit 10b7d39

Browse files
author
Aviv Laufer
committed
Run demo app
1 parent a8c5d9f commit 10b7d39

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

run_demo.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
pkill -9 protoconf >/dev/null 2>&1
11+

0 commit comments

Comments
 (0)