diff --git a/default_config.py b/default_config.py index 9fd3ffb..25f6a24 100644 --- a/default_config.py +++ b/default_config.py @@ -19,7 +19,7 @@ password = None standalone = False # Defines whether the browser should be opened automatically at startup -start_browser = True +start_browser = False # Multipe instance. If True, multiple clients that connects to your script has different App instances multiple_instance = False diff --git a/dev.sh b/dev.sh new file mode 100755 index 0000000..9046a34 --- /dev/null +++ b/dev.sh @@ -0,0 +1,7 @@ +#!/bin/bash +if ! which entr > /dev/null; then + echo "entr is not installed, aborting..." + exit 1 +fi + +find . -name "*.py" | entr -r ./main.py