This commit is contained in:
Patrick Alvin Alcala 2025-11-26 16:51:33 +08:00
parent fec3abd5d8
commit bcb83dfea5
13 changed files with 1542 additions and 4019 deletions

View file

@ -1,16 +1,16 @@
.SILENT:
all:
deno install && deno install --allow-scripts=npm:sharp,npm:@parcel/watcher
bun install && bun pm trust --all
dev:
deno task dev
bun run dev
build:
deno task build && PORT=9000 deno run --allow-env --allow-read --allow-net .output/server/index.mjs &
bun run build && PORT=9000 node .output/server/index.mjs &
update:
deno update
bun update
docker:
docker compose up -d