chore: add initial project structure and tooling

This commit is contained in:
2025-06-08 15:12:13 +08:00
parent fdca40817a
commit 7629a3f030
10 changed files with 137 additions and 1 deletions

25
users/Taskfile.yml Normal file
View File

@@ -0,0 +1,25 @@
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: "3"
silent: true
vars:
GIT_ROOT:
sh: git rev-parse --show-toplevel
tasks:
default:
cmds:
- go mod tidy
- task -l --json | jq -r '.tasks[].name' | fzf --tmux | xargs task
gen:templ:
aliases: [templ]
desc: Templ Generate
cmds:
- templ generate
gen:sqlc:
aliases: [sqlc]
desc: Sqlc Generate
cmds:
- sqlc generate