feat: add Linkding deployment

This commit is contained in:
Daniel Cosme
2026-04-17 20:49:37 -04:00
parent ef85cf4d7e
commit 573e8b6670
14 changed files with 221 additions and 18 deletions

View File

@@ -13,9 +13,9 @@ import (
*/)
var r target.Runner
var Default = Run
var Default = Build
var Aliases = map[string]any{
"r": Run,
"b": Build,
}
func init() {
@@ -28,7 +28,7 @@ func init() {
r = target.NewRunner(Env, nil)
}
func Run() error {
func Build() error {
t := target.NewA("go", "run", ".")
return r.RunV("run", t)
}