Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.55 KB

README.md

File metadata and controls

26 lines (17 loc) · 1.55 KB

¿Que? - A Simple BI Tool

Que is a simple BI tool to share queries with your team.

Click the button below to deploy your own instance of Que:

Deploy with Vercel

Environment Variables

Que uses the following environment variables:

  • GOOGLE_DOMAIN - The domain of your Google Workspace account (e.g. example.com).
  • GOOGLE_CLIENT_ID - The client ID of your Google OAuth app (see below).
  • GOOGLE_CLIENT_SECRET - The client secret of your Google OAuth app.
  • POSTGRES_PRISMA_URL - The URL of your Prisma database (to store your Que queries and auth info of the users using Que).
  • POSTGRES_URL_NON_POOLING - The URL of your Prisma database without pooling.
  • READ_DATABASE_URL - The URL of your read-only database (where your queries are run).
  • NEXTAUTH_SECRET - The secret for NextAuth.
  • NEXTAUTH_URL - The URL of your Vercel deployment (e.g. https://que-bi.vercel.app).

Google OAuth

To get the GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET, you need to create a new project in the Google Developers Console. Then, create a new OAuth 2.0 client ID and set the redirect URI to https://<YOUR VERCEL URL>/api/auth/callback/google.

For details, see the NextAuth documentation.