9 lines
266 B
Bash
Executable File
9 lines
266 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
cd "$(dirname "$0")"
|
|
echo "=== HSE Integration Server ==="
|
|
echo "Installing..."
|
|
pip3 install -r requirements.txt --break-system-packages -q 2>/dev/null
|
|
echo "Starting on http://0.0.0.0:5000"
|
|
python3 server.py
|