An HTTP/1.1 server for zig
0

Configure Feed

Select the types of activity you want to include in your feed.

http.zig / Makefile
567 B 22 lines
1F= 2zig ?= zig 3.PHONY: t 4t: 5 TEST_FILTER='${F}' '${zig}' build test -Dtsan=true -Dforce_blocking=false -freference-trace --summary all 6 TEST_FILTER='${F}' '${zig}' build test -Dforce_blocking=true -freference-trace --summary all 7 8.PHONY: tn 9tn: 10 TEST_FILTER='${F}' '${zig}' build test -Dforce_blocking=false -freference-trace --summary all 11 12.PHONY: tb 13tb: 14 TEST_FILTER='${F}' '${zig}' build test -Dforce_blocking=true -freference-trace --summary all 15 16.PHONY: s 17s: 18 zig build example_1 -freference-trace 19 20.phony: d 21d: 22 cd docs && npx @11ty/eleventy --serve --port 5300