mirror of
https://github.com/cf-sonr/dbx.git
synced 2026-01-12 02:59:13 +00:00
chore: add initial project structure and tooling
This commit is contained in:
25
network/Taskfile.yml
Normal file
25
network/Taskfile.yml
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user