Follow Tangled repos/knots In RSS
1# Default task: list all available tasks
2default:
3 @just --list
4
5# Start the application
6start:
7 deno run --allow-net main.ts
8
9# Run the application in development mode with watching
10dev:
11 deno run --watch --allow-env --allow-net main.ts
12
13# Test the application
14test:
15 curl --silent http://localhost:8000/hrbrmstr.dev
16
17# Build the application into an executable
18build:
19 deno compile --allow-net --allow-env --output tangled-rss main.ts