This commit is contained in:
JOLIMAITRE Matthieu 2024-04-12 17:34:57 +02:00
commit f159fab9a9
6 changed files with 195 additions and 0 deletions

9
build.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh
set -e
cd "$(dirname "$(realpath "$0")")"
MAIN="main.ts"
ARGS="--allow-net"
BIN="okimeter"
deno compile "$ARGS" -o "$BIN" "$MAIN"