summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-03-30 05:55:34 -0300
committerEuAndreh <eu@euandre.org>2024-03-30 05:55:34 -0300
commit687e0b93800fa95e4bd78a2d8aa50b7e9314ee29 (patch)
treed55cfcf3eac8c81cf1037def89336e04a64fbf99
parentMakefile: rm both socket files (diff)
downloadpapod-687e0b93800fa95e4bd78a2d8aa50b7e9314ee29.tar.gz
papod-687e0b93800fa95e4bd78a2d8aa50b7e9314ee29.tar.xz
Makefile: add binder instance for port 6667
-rw-r--r--Makefile11
1 files 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