summaryrefslogtreecommitdiffstats
path: root/docker/start-selenium-node.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/start-selenium-node.sh')
-rwxr-xr-xdocker/start-selenium-node.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/docker/start-selenium-node.sh b/docker/start-selenium-node.sh
new file mode 100755
index 00000000..a02d0e82
--- /dev/null
+++ b/docker/start-selenium-node.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+# Start the pulseaudio server
+pulseaudio -D --exit-idle-time=-1
+
+# Load the virtual sink and set it as default
+pacmd load-module module-virtual-sink sink_name=v1
+pacmd set-default-sink v1
+
+# Set the monitor of v1 sink to be the default source
+pacmd set-default-source v1.monitor
+
+rm -f /tmp/.X*lock
+
+# Start app servers
+python -m g4f.cli api &
+python -m g4f.cli gui \ No newline at end of file