Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/forge/plugins/dev.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (p *DevPlugin) runDev(ctx cli.CommandContext) error {
}

if len(apps) == 0 {
ctx.Warning("No apps found. Create one with: forge generate:app")
ctx.Warning("No apps found. Create one with: forge generate app")

return nil
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/forge/plugins/doctor.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (p *DoctorPlugin) runDoctor(ctx cli.CommandContext) error {

if p.config == nil {
ctx.Println(" 1. Run: forge init")
ctx.Println(" 2. Run: forge generate:app --name=my-app")
ctx.Println(" 2. Run: forge generate app --name=my-app")
ctx.Println(" 3. Run: forge dev")
} else {
ctx.Println(" 1. Run: forge dev")
Expand Down
2 changes: 1 addition & 1 deletion cmd/forge/plugins/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func (p *InitPlugin) initProject(ctx cli.CommandContext) error {
ctx.Success("Next steps:")
ctx.Println(" 1. Review .forge.yaml and config.yaml configuration")
ctx.Println(" 2. (Optional) Copy config.local.yaml.example to config.local.yaml for local overrides")
ctx.Println(" 3. Run: forge generate:app --name=my-app")
ctx.Println(" 3. Run: forge generate app --name=my-app")
ctx.Println(" 4. Run: forge dev")

return nil
Expand Down