12 lines
184 B
Bash
Executable File
12 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PORT=${FAIRHOPPER_API_PORT=8010}
|
|
|
|
echo "Starting FairHopper game server on port ${PORT}"
|
|
|
|
uvicorn \
|
|
main:app \
|
|
--host 0.0.0.0 \
|
|
--port ${PORT} \
|
|
--workers=1
|