6 lines
204 B
Bash
Executable File
6 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
# Get the directory of this script (which will be inside the bundle)
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
exec ./venv/bin/python "$SCRIPT_DIR/server.py"
|