cd server
dart pub get
mkdir -p build
dart compile exe bin/main.dart -o build/server
./build/server --address=127.0.0.1 --port=8080 --isolates=24 --verbose=2 --environment=localcd client
dart pub get
mkdir -p build
dart compile exe bin/main.dart -o build/client
./build/client --address=127.0.0.1 --port=8080 --isolates=24 --count=10000