Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 776 Bytes

README.md

File metadata and controls

52 lines (36 loc) · 776 Bytes

Getting Started

  1. Create a .env file in the root of the project and add the following
  cp .env.example .env
  1. Generate auth secret key
  npx auth secret
  1. Fill up your google & github client id & secret in .env
  ...
  AUTH_GOOGLE_ID=xxxx
  AUTH_GOOGLE_SECRET=xxxx
  ...
  1. Create your Resend api key for email service in .env
  ...
  RESEND_API_KEY=xxxx
  ...
  1. Install dependencies
  yarn install
  1. Start postgres database
  docker-compose up -d
  1. Run the development server:
  yarn dev

Open http://localhost:3000 with your browser to see the result.