9 lines
151 B
Bash
Executable File
9 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
# FuelBoard Copy Editor launcher
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
|
|
PORT="${EDITOR_PORT:-8790}"
|
|
export PORT
|
|
exec python3 editor.py
|