A CLI-based workspace manager for much better development flow.
Install with
go install github.com/Nykenik24/foundry@latestCreate a new project with project init
foundry project init <name>Add tasks with task new
foundry task new greetTo add a command to the task, you can either use the --cmd flag
foundry task new greet --cmd "echo 'Hello\!'"Or edit .foundry/tasks.toml
[tasks.greet]
name = "greet"
cmd = "echo 'Hello!'"