5 lines
273 B
Bash
Executable file
5 lines
273 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
EXPERIMENT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
REPO_ROOT="$(cd "$EXPERIMENT_DIR/../.." && pwd)"
|
|
exec python3 "$REPO_ROOT/tools/playtest_server.py" --directory "$EXPERIMENT_DIR/prototype" --log-directory "$REPO_ROOT/JSONL" --port 8000
|