mirror of
https://github.com/zooai/ai.git
synced 2026-07-27 03:18:45 +00:00
17 lines
685 B
Bash
17 lines
685 B
Bash
## You must first activate a Billing Account here: https://platform.openai.com/account/billing/overview
|
|
## Then get your OpenAI API Key here: https://platform.openai.com/account/api-keys
|
|
OPENAI_API_KEY=XXXXXXXX
|
|
|
|
# Update these with your Supabase details from your project settings > API
|
|
# https://app.supabase.com/project/_/settings/api
|
|
# In local dev you can get these by running `supabase status`.
|
|
NEXT_PUBLIC_SUPABASE_URL=your-project-url
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key
|
|
|
|
## Follow GitHub Oauth setup steps from Supabase,
|
|
## if you choose not to use Github, set first
|
|
## value to "false"
|
|
NEXT_PUBLIC_AUTH_GITHUB=false
|
|
AUTH_GITHUB_ID=XXXXXXXX
|
|
AUTH_GITHUB_SECRET=XXXXXXXX
|