diff options
| author | EuAndreh <eu@euandre.org> | 2024-03-01 16:09:56 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2024-03-01 16:11:17 -0300 |
| commit | 013f9222f3134460a43fd79446b59237916cf0c3 (patch) | |
| tree | 8d83c437c215f4b8260f513820830ebfcd326ee3 /Makefile | |
| parent | src/web.mjs: Try out new hero API (diff) | |
| download | papod-013f9222f3134460a43fd79446b59237916cf0c3.tar.gz papod-013f9222f3134460a43fd79446b59237916cf0c3.tar.xz | |
Setup user-level lighttpd reverse proxy for development and testing
Add static files as in production, too.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -57,6 +57,7 @@ derived-assets = \ side-assets = \ tests/hero-0.sock \ tests/hero-1.sock \ + lighttpd.sock \ ircd.sock \ web.sock \ @@ -142,9 +143,12 @@ run-web: all rm -f web.sock ./src/bin.mjs web web.sock +run-proxy: all + lighttpd -Df tests/lighttpd.conf + ## Run the web and IRC server locally. run: all - $(MAKE) run-ircd & $(MAKE) run-web & wait + $(MAKE) run-ircd & $(MAKE) run-web & $(MAKE) run-proxy & wait ## Show this help. |
