Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.09 KB

README.md

File metadata and controls

66 lines (42 loc) · 1.09 KB

ABRAGO DB

A database for Brazilian Go players.

You can check out the future plans for the project in the tasks.md file.

Services and Tech

Dev

Environment Variables

This is the shape of the project's environment variables:

#-----------------------------------------------------------
# 1. Clerk

NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=

CLERK_WEBHOOKS_USER_EVENTS=

#-----------------------------------------------------------

EdgeDB

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

Using Ngrok for Local Development

Expose your local host to the web:

ngrok http http://localhost:3000