diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bd75ab9 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +SERVER_PORT := 50051 +BOT_PORT := 3001 +BOT_NAME := python-rl-bot1 + +# Run python rl bot +runbotpy-rl: + python3 main.py --bn $(BOT_NAME) --la=localhost:$(BOT_PORT) --gs=localhost:$(SERVER_PORT) + +.PHONY: runbotpy-rl