Added a script that starts up various gym servers

This commit is contained in:
Brandon Rozek 2019-06-15 10:08:28 -04:00
parent 18ad080026
commit 9284066682

6
start_servers.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
export FLASK_APP=gymserver.py
for i in {0..31}
do
flask run --port=$((5000 + i)) &
done