Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add table tutorial #1273

Merged
merged 36 commits into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
18d7889
WIP
qbzzt Aug 3, 2023
d608f46
WIP
qbzzt Aug 3, 2023
0142f22
WIP
qbzzt Aug 7, 2023
3050d81
WIP
qbzzt Aug 8, 2023
ee0b849
WIP
qbzzt Aug 8, 2023
1f3bf2e
WIP
qbzzt Aug 8, 2023
4af93aa
WIP
qbzzt Aug 8, 2023
12083fa
WIP
qbzzt Aug 8, 2023
c931df3
WIP
qbzzt Aug 9, 2023
11d32eb
docs: Extend schema tutorial
qbzzt Aug 10, 2023
d12f411
WIP
qbzzt Aug 10, 2023
9a4bc29
WIP
qbzzt Aug 10, 2023
13a051d
WIP
qbzzt Aug 10, 2023
b9eee88
Merge branch 'main' into 230802-minimal-extend-schema
qbzzt Aug 10, 2023
659a298
Update tutorials.mdx
qbzzt Aug 10, 2023
a28e827
Update extend_schema.mdx
qbzzt Aug 10, 2023
5dcc291
WIP
qbzzt Aug 10, 2023
8e8218c
Merge branch '230802-minimal-extend-schema' of https://github.com/lat…
qbzzt Aug 10, 2023
4228cfe
docs: Use `<CollapseCode>`
qbzzt Aug 10, 2023
90a20cd
WIP
qbzzt Aug 10, 2023
e3dd651
WIP
qbzzt Aug 10, 2023
3124b6f
Prettier run
qbzzt Aug 10, 2023
c9cefb8
Merge branch '230802-minimal-extend-schema' of https://github.com/lat…
qbzzt Aug 14, 2023
509db86
Apply suggestions from code review
qbzzt Aug 14, 2023
f813f81
Merge branch '230802-minimal-extend-schema' of https://github.com/lat…
qbzzt Aug 14, 2023
30f6e8f
Added most comments
qbzzt Aug 14, 2023
513cbc0
Post @alvarius comments
qbzzt Aug 14, 2023
b0f4156
tiny fix
qbzzt Aug 14, 2023
ce4e3e9
Merge branch 'main' into 230802-minimal-extend-schema
qbzzt Aug 14, 2023
62d047a
Merge branch 'main' into 230802-minimal-extend-schema
qbzzt Aug 15, 2023
ceefffa
Merge branch 'main' into 230802-minimal-extend-schema
qbzzt Aug 15, 2023
c3d9dbe
Merge branch 'main' into 230802-minimal-extend-schema
qbzzt Aug 16, 2023
b6bd9fc
Merge branch 'main' into 230802-minimal-extend-schema
qbzzt Aug 17, 2023
fd29f81
Update with @holic comments
qbzzt Aug 18, 2023
f32c66e
Merge branch 'main' into 230802-minimal-extend-schema
qbzzt Aug 23, 2023
0987732
Merge branch 'main' into 230802-minimal-extend-schema
alvrs Aug 23, 2023
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: 2 additions & 0 deletions docs/pages/tutorials.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ These tutorials teach you how to do various things with MUD.
[These tutorials](tutorials/minimal) teach you how to make various changes to [the getting started example](https://github.com/latticexyz/mud/tree/main/examples/minimal).
This is an easy way to learn how to modify MUD functionality in various ways.

- [Extend the schame](tutorials/minimal/extend_schema):
In this tutorial you extend the schema and learn how to lookup information using a key.
- [Add a system](tutorials/minimal/add_system):
In this tutorial you add a system to decrement the counter and update the application to use it.

Expand Down
1 change: 1 addition & 0 deletions docs/pages/tutorials/minimal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ To create the basic version to modify, follow these steps:

## The tutorials

- [Extend the schema](minimal/extend_schema)
- [Add a system](minimal/add_system)
3 changes: 2 additions & 1 deletion docs/pages/tutorials/minimal/_meta.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export default {
add_system: "Add a system",
"extend_schema": "Extend the schema",
"add_system": "Add a system",
qbzzt marked this conversation as resolved.
Show resolved Hide resolved
};
Loading
Loading