fes

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 4eaead6abc5540b9e65814fe9ded84745a1ce566
parent 4abf2969ca157ffde16420e39dc3a2963874319d
Author: vx-clutch <[email protected]>
Date:   Wed, 31 Dec 2025 12:16:59 -0500

hint for running project

Diffstat:
Mmodules/new/new.go | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/modules/new/new.go b/modules/new/new.go @@ -2,6 +2,7 @@ package new import ( "fes/modules/config" + "fes/modules/ui" "fmt" "os" "os/exec" @@ -114,5 +115,15 @@ All commands are run from the root of the project, from a terminal: ## What to learn more? Check out [Fes's docs](https://docs.vxserver.dev/static/fes.html).`, "$$", "`"), dir, dir) + + ui.Hint("you can run this with `fes run %s`", dir) + + fmt.Println("Created new Fes project at", func() string { + if res, err := filepath.Abs(dir); err == nil { + return res + } + return dir + }()) + return nil }