An event landing site for Link.EXE's RealITy @ April 14, 2023.
Made by Carlo Taleon and Asther Louie Cabardo
-
Fork this repository and clone your fork.
-
Create a new branch for your changes:
$ cd your_cloned_fork
$ git checkout dev
$ git checkout -b my-new-branch
- Install dependencies (we use pnpm):
$ pnpm install
- Create a
.env
file in root with this content:
For
GOOGLE_*
andJWT_SECRET
, Create a project and connect on Google Cloud Console โ.
DATABASE_URL
should be your local MySQL database. Guide โ
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
NEXTAUTH_URL=http://localhost:3000
JWT_SECRET=
DATABASE_URL="mysql://johndoe:randompassword@localhost:3306/mydb"
- Sync the database schema:
$ npx prisma generate
$ npx prisma db push
- Run locally:
$ pnpm dev