A database for Brazilian Go players.
You can check out the future plans for the project in the tasks.md
file.
- Vercel for handling deployment.
- EdgeDB
- Clerk Auth
This is the shape of the project's environment variables:
#-----------------------------------------------------------
# 1. Clerk
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
CLERK_WEBHOOKS_USER_EVENTS=
#-----------------------------------------------------------
To create migrations:
edgedb migration create
edgedb migrate
If you would like to reset things, you can:
edgedb
And then use reset schema to initial;
.
You will also probably need to update Next.js' inferred types with:
pnpx @edgedb/generate edgeql-js
It's also possible to watch for diffs on EdgeDB with:
edgedb watch
Expose your local host to the web:
ngrok http http://localhost:3000