Skip to content

Commit

Permalink
docs: replaces simple-crud references by full-app-gourmet
Browse files Browse the repository at this point in the history
  • Loading branch information
EwenQuim committed Feb 8, 2024
1 parent 8dc6318 commit e1b53be
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ lint:
go run github.com/golangci/golangci-lint/cmd/golangci-lint@latest run

example:
( cd examples/simple-crud && go run . -debug )
( cd examples/full-app-gourmet && go run . -debug )

example-watch:
( cd examples/simple-crud && air -- -debug )
( cd examples/full-app-gourmet && air -- -debug )

# Documentation website
docs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
The only Go framework generating OpenAPI documentation from code. Inspired by Nest, built for Go developers.

Also empowers `html/template`, `a-h/templ` and `maragudk/gomponents`: see [the example](./examples/simple-crud) - actually running [in prod](https://gourmet.quimerch.com)!
Also empowers `html/template`, `a-h/templ` and `maragudk/gomponents`: see [the example](./examples/full-app-gourmet) - actually running [in prod](https://gourmet.quimerch.com)!

## Why Fuego?

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/tutorials/rendering/templ.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Fuego supports templating with [Templ](https://github.com/a-h/templ).

Simply return a Templ component from your handler, with the `fuego.Templ` return type.

Example from [a recipe app](https://github.com/go-fuego/fuego/tree/main/examples/simple-crud):
Example from [a recipe app](https://github.com/go-fuego/fuego/tree/main/examples/full-app-gourmet):

```go
// highlight-next-line
Expand Down
2 changes: 1 addition & 1 deletion examples/full-app-gourmet/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
simple-crud
full-app-gourmet
docs
.vscode
tmp
Expand Down

0 comments on commit e1b53be

Please sign in to comment.