build(script): create justfile to help build

This commit is contained in:
Anhgelus Morhtuuzh 2025-08-15 22:01:49 +02:00
parent e4d6c8a6f9
commit a4e2949d76
Signed by: anhgelus
GPG key ID: 617773CACE89052C
2 changed files with 10 additions and 0 deletions

3
.gitignore vendored
View file

@ -176,3 +176,6 @@ dist
# Test files
public/
test
# builds
now

7
justfile Normal file
View file

@ -0,0 +1,7 @@
dev:
bun run build
go run . --dev --config test/config.toml --domain example.org --public-dir public/
build:
bun run build
go build