10 lines
159 B
Bash
10 lines
159 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
|
||
|
|
HOST="${HOST:-0.0.0.0}"
|
||
|
|
PORT="${PORT:-8003}"
|
||
|
|
|
||
|
|
python3 dev_server.py --host "$HOST" --port "$PORT"
|