- Node.js
- docker-compose (see here on how to install on your machine)
- supabase (see here on how to get started)
- Warcraft Logs account for a Warcraft Logs V2 API client (create one here)
This repository initially was bootstrapped with create-next-app
, was a yarn workspaces
monorepo for a few months and now is back to being a large repo without individual packages as prisma became fascinatingly slow when importing from a different local package. It's still not blazingly fast but a lot better.
src/pages
contains Next.js pages - the folder must be either in/pages
or/src/pages
and I don't like having it on top level, so there you go.src/api
contains all Next.js API routes logic, consumed within/src/pages/api
src/wcl
contains all Warcraft Logs API retrieval & processing logic, consumed withinsrc/api
src/web
contains the React website consumed withinsrc/pages
I'm using React 18 on the experimental
channel, primarily because I can and being able to codesplit with next/dynamic
and Suspense
as well as SuspenseList
are nice. Other than that, it's pretty straight forward React, Next.js and Tailwind.
The file src/web/staticData.ts
is generated by src/web/createStaticData.ts
by running yarn db:static-data
. Some of the data there is technically duplicated or a trimmed down version of data residing somewhere else in the repo. Treeshaking, even with webpack5, is not smart enough to only include specifically e.g. the NW
constant from src/queries/events/dungeons/nw
which is the only bit of logic I need from that file. For whatever reason, isNwSpearEvent
and all the other Warcraft Logs related parsing utilities will also end up in the frontend bundle.
It will also be run during the build process to avoid having some icons present in prod only so you don't have to worry about updating it yourself.
- copy Warcraft Logs client ID and client secret into
.env
at the corresponding spots npm install -g supabase
- globally installs supabase (a requirement on their end)supabase init
- bootstraps supabase locallyyarn dev-db:start
- starts the supabase docker containerscp .env.example .env
(create a copy of.env.example
and rename it to.env
)yarn db:push
- pushes theprisma
schema to the local dbyarn db:seed
- seeds the supabase dev db with default data (classes, roles, etc.)yarn gql:introspection
- fetches the latest graphql schema from the Warcraft Logs V2 APIyarn gql:generate
- generatesgraphql-request
files as well as types
If you've setup Docker/Supabase differently than the defaults recommend, adjust your DATABASE_URL
env variable accordingly.
The NEXT_PUBLIC_SENTRY_DSN
variable is currently irrelevant as Sentry is disabled locally.
yarn dev
- starts the Next.js dev environment at http://localhost:3000
I'd love to have more stories, but that'll come later.
You can start storybook through yarn storybook:dev
.
I'd love to have more tests, but that'll come later. The existing tests are better than nothing.
You can run the individual subfolders tests through yarn test:api
, yarn test:wcl
and yarn test:web
(or just yarn test
for all). Each has their own jest.config.*.js
.
I'm naturally using my own ESLint config. There are a few warnings, I'm aware of them and will fix them eventually.
Errors should be fixed when filing a PR.
Everything is TypeScript. Don't use any
, avoid unknown
unless in generics.
Typechecking can be initiated through yarn types
and must pass when filing a PR.
Prettier defaults. Install the recommended VSCode extensions if you didn't already.