Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.67 KB

File metadata and controls

66 lines (42 loc) · 1.67 KB

Web, Mobile Application Development

Apps and Packages

Each package/app is 100% TypeScript.

Utilities

This Turborepo has some additional tools already setup for you:

Requirements


Running the Project

Create Google OAuth App

Follow this guide: Creating an OAuth App

  • Authorized JavaScript origins: http://localhost:3001
  • Authorized redirect URIs: http://localhost:3001/auth/google/callback

Save the Client ID and Client Secret for the next step.


Run the Project

$ yarn install
$ yarn run dev

Create a .env file in the server directory

$ cd server
$ cp .env.example .env

Server

Create migration

$ cd server
$ npx prisma migrate dev --name <name-migrate>