sshpong/makefile

14 lines
181 B
Makefile
Raw Normal View History

2024-09-26 19:49:59 -06:00
lint:
golangci-lint run
2024-10-03 22:41:33 -06:00
server:
air -c .air_server.toml
client:
while true; do \
go run cmd/client/main.go;\
echo "Client has exited, restarting...";\
sleep 2;\
done