Skip to content

Files

web

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 25, 2025
Jan 18, 2025
Dec 20, 2024
Sep 3, 2024
Aug 30, 2024
Jan 1, 2025
Dec 31, 2024
Sep 19, 2024
Dec 14, 2024
Sep 13, 2024
Sep 3, 2024

Web code

Folder structure

The app is split into main folders inside ./src:

  • ./components: reusable React components
  • ./pages
  • ./redux: contains slices (reducers and actions), and async actions

Then there are additional folders:

  • ./utils: miscellaneous code
  • ./assets: non-code files
  • _* folders: boilerplate code

State management

We use Redux Toolkit, but only the "Redux" part. Please check their documentation.

Run e2e locally

Make sure you have already run npm run dev:all at the root of the repo, then in a separate terminal run:

npm run e2e:dev

Note: If the README is still unclear, please create a PR with your suggested changes/additions.