Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ _I want to change..._

- _...the data available to Hydrant._
- The entry point is `scrapers/update.py`.
- This goes through the client loader in `src/routes/Index.tsx`, which looks for the data.
- This goes through the client loader in `src/routes/_index.tsx`, which looks for the data.
- The exit point is through the constructor of `State` in `src/lib/state.ts`.
- _...the way Hydrant behaves._
- The entry point is `src/lib/state.ts`.
- The exit point is through `src/routes/Index.tsx`, which constructs `hydrant` and adds it to a reusable context.
- The exit point is through `src/routes/_index.tsx`, which constructs `hydrant` and adds it to a reusable context.
- _...the way Hydrant looks._
- The entry point is `src/routes/Index.tsx`.
- The entry point is `src/routes/_index.tsx`.
- We use [Chakra UI](https://chakra-ui.com/) as our component library. Avoid writing CSS.
- _...routes available in Hydrant._
- Routes are stored in `src/routes.ts` and can be modified there.
Expand All @@ -79,6 +79,6 @@ Try not to introduce new technologies that must be separately understood to keep
- some MIT class teaches how to use it
- e.g. web.lab teaches React, 6.102 teaches Typescript
- it's tiny and used in only a small part of the app
- e.g. msgpack-lite is only used for URL encoding, nanoid is only used to make IDs
- e.g. msgpack is only used for URL encoding, nanoid is only used to make IDs
- it's a big, popular, well-documented project that's been around for several years
- e.g. FullCalendar has been around since 2010, Chakra UI has a large community
Loading