feat: auto generate example env file (#647)

* feat: auto generate example env file

* refactor: simplify build paths func and better slice handling

* chore: forgot to stage everything

* chore: review comments

* refactor: remove square brackets because they mess up the syntax
highlighting

* refactor: use lowercase name to mark dynamic values
This commit is contained in:
Stavros
2026-02-16 23:39:05 +02:00
committed by GitHub
parent e078e8a3f0
commit 6112f977ea
6 changed files with 414 additions and 139 deletions

11
gen/gen.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"log/slog"
)
func main() {
slog.Info("generating example env file")
generateExampleEnv()
}