Feat: Implement support for multiple CCNs

This commit is contained in:
Danny Morabito 2025-04-09 13:40:02 +02:00
parent 097f02938d
commit a8ffce918e
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
7 changed files with 778 additions and 169 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
TARGETS = x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu x86_64-apple-darwin aarch64-apple-darwin
.PHONY: all clean
all: $(TARGETS:%=dist/relay-%)
dist/relay-%: | dist/
deno compile -A -r --target $* --include migrations --include public --no-lock --output $@ index.ts
dist/:
mkdir -p dist
clean:
rm -f dist/*