/ native-host / start-bridge.sh
start-bridge.sh
1 #!/bin/bash 2 # Mnemonic Workspaces Bridge startup script for Linux 3 4 # Add user local bin to PATH for uvicorn 5 export PATH="$HOME/.local/bin:$PATH" 6 7 # Change to the script directory 8 cd "$(dirname "$0")" 9 10 # Start the bridge 11 exec python3 workspaces-bridge.py "$@"