DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-web

emerwen-web/justfile -rw-r--r-- 422 bytes
4e555b1eJonni Liljamo feat: UI for new/patch/delete worker/target 11 hours ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
_default:
    just --list

air *ARGS:
    #!/usr/bin/env bash
    export GIN_MODE=release
    air --build.cmd "go build -o ./tmp/emerwen-web cmd/emerwen-web/main.go" \
        --build.bin "./tmp/emerwen-web" \
        --build.exclude_dir "tmp" \
        --build.include_ext "go,tmpl" \
        -- {{ARGS}}

watch-templ-tailwindcss:
    templ generate --watch & tailwindcss -i input.css -o ./static/style.css --watch && fg