-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct documentation spelling (#68)
* fix: documentation/index spelling * fix: documentation/development-setup spelling * fix: documentation/api-fetching spelling * fix: documentation/components spelling * fix: documentation/dynamic-routes spelling * feat: add correct tutorial link to README.md * chore: remove legacy folder * fix: formatting * fix: documentation/error-handling spelling * fix: documentation/seo spelling * fix: documentation/redirections spelling * fix: documentation/production spelling * fix: documentation/conclusion spelling * feat: update version to v0.10.4 * fix: redirections spelling * fix: API fetching spelling * feat: create CLI doc page * fix: correct CLI spelling * fix: update CLI output spelling
- Loading branch information
1 parent
93b4408
commit ea82d2b
Showing
24 changed files
with
76 additions
and
792 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,12 @@ import Breadcrumbs, { Element } from '../../../components/breadcrumbs' | |
|
||
# Conclusion | ||
|
||
That’s it! You just created a multi thread full stack application with rust and react. | ||
That’s it! You just created a multi thread full stack application with Rust and React. | ||
|
||
The project is still under heavy development and many features are not ready yet but | ||
The project is still under heavy development and many features are not ready yet, but | ||
I hope you got the taste of what is like working with rust and react in the same stack. | ||
|
||
As I mentioned in the introduction I'd love to hear what you thought about the framework and the tutorial - feel free to reach me | ||
As I mentioned in the introduction, I'd love to hear what you thought about the framework and the tutorial - feel free to reach me | ||
at [[email protected]](mailto:[email protected]) or in Twitter (X) DMs [@valerioageno](https://twitter.com/valerioageno). | ||
|
||
Ciao |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
apps/documentation/src/routes/documentation/tutorial/dynamic-routes.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,32 +12,17 @@ import Breadcrumbs, { Element } from '../../../components/breadcrumbs' | |
|
||
# Tutorial | ||
|
||
This tutorial is meant for giving you a sneak peek of the framework and is intended to evolve during the | ||
This tutorial is meant to give you a sneak peek at the framework and is intended to evolve during the | ||
development - be sure to have [installed](/documentation/installation) the [latest version](https://crates.io/crates/tuono). | ||
|
||
This tutorial is not meant for people that don't know React - in that case I suggest you to first read the | ||
[React doc](https://react.dev/); Typescript and Rust knowledge is not a requirement though! | ||
This tutorial is not meant for people who don't know React - in that case, I suggest you first read the | ||
[React Doc](https://react.dev/); Typescript and Rust knowledge is not a requirement though! | ||
|
||
If you prefer to just read the code rather than writing it you can download the finished tutorial project with: | ||
If you prefer to just read the code rather than write you can download the finished tutorial project with: | ||
|
||
```bash | ||
$ tuono new tutorial --template tutorial | ||
``` | ||
|
||
> I'd love to hear your thoughts about the framework and the tutorial - feel free to reach me at [[email protected]](mailto:[email protected]) | ||
> or on Twitter (X) DM [@valerioageno](https://twitter.com/valerioageno) | ||
## Table of contents | ||
|
||
- Project scaffold | ||
- Start the dev environment | ||
- The “/” route | ||
- Tutorial introduction | ||
- Fetch all the pokemons | ||
- Create a stand-alone component | ||
- Create the /pokemons/[pokemon] route | ||
- Error handling | ||
- Seo and meta tags | ||
- Handle redirections | ||
- Building for production | ||
- Conclusion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tuono" | ||
version = "0.10.3" | ||
version = "0.10.4" | ||
edition = "2021" | ||
authors = ["V. Ageno <[email protected]>"] | ||
description = "The react/rust fullstack framework" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tuono_lib" | ||
version = "0.10.3" | ||
version = "0.10.4" | ||
edition = "2021" | ||
authors = ["V. Ageno <[email protected]>"] | ||
description = "The react/rust fullstack framework" | ||
|
@@ -33,7 +33,7 @@ either = "1.13.0" | |
tower-http = {version = "0.6.0", features = ["fs"]} | ||
colored = "2.1.0" | ||
|
||
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.10.3"} | ||
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.10.4"} | ||
# Match the same version used by axum | ||
tokio-tungstenite = "0.24.0" | ||
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] } | ||
|
Oops, something went wrong.