From 687e0b93800fa95e4bd78a2d8aa50b7e9314ee29 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 30 Mar 2024 05:55:34 -0300 Subject: Makefile: add binder instance for port 6667 --- Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 68737ee..4846226 100644 --- a/Makefile +++ b/Makefile @@ -134,18 +134,21 @@ run-papo: all run-wscat: rm -f wscat.socket - wscat wscat.socket papo.socket + wscat wscat.socket papo.public.socket run-glaze: rm -f glaze.socket glaze -P '/api/socket:wscat.socket' -P '*:src/static/' glaze.socket -run-binder: - binder localhost:4321 glaze.socket +run-binder-web: + binder localhost:4443 glaze.socket + +run-binder-ircd: + binder localhost:6667 papo.public.socket ## Run papo locally and its helper programs. run: all - for c in wscat papo binder glaze; do \ + for c in wscat papo binder-web binder-ircd glaze; do \ $(MAKE) run-$$c & \ done; \ wait -- cgit v1.2.3