summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-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