6 lines
194 B
Bash
Executable File
6 lines
194 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Start the mock ARC backend. Requires `flask` in the active Python env.
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
exec python3 mock_server.py --host 127.0.0.1 --port 8888 "$@"
|