- sqlc.yaml: postgresql engine, schema points at migrations/ (Pitfall 7), pgx/v5 sql_package - tailwind.input.css: @source globs for templ + internal/web Go files (Pitfall 3), @imports four ui/*.css files per UI-SPEC - .air.toml: watches .go + .templ, excludes generated *_templ.go (Pitfall 5), runs 'templ generate' pre-build - Tailwind watch is NOT wired into air pre_cmd (two-terminal workflow per RESEARCH Open Q2)
10 lines
292 B
CSS
10 lines
292 B
CSS
@import "tailwindcss";
|
|
|
|
@source "../templates/**/*.templ";
|
|
@source "../internal/web/**/*.templ";
|
|
@source "../internal/web/**/*.go";
|
|
|
|
@import "../internal/web/ui/base.css";
|
|
@import "../internal/web/ui/button.css";
|
|
@import "../internal/web/ui/card.css";
|
|
@import "../internal/web/ui/badge.css";
|