Refactor to use ai/rsc (#253)
This commit is contained in:
parent
69ca8fcc22
commit
e85ba803dd
66 changed files with 2799 additions and 740 deletions
16
.env.example
16
.env.example
|
|
@ -4,13 +4,6 @@ OPENAI_API_KEY=XXXXXXXX
|
|||
|
||||
# Generate a random secret: https://generate-secret.vercel.app/32 or `openssl rand -base64 32`
|
||||
AUTH_SECRET=XXXXXXXX
|
||||
# Create a GitHub OAuth app here: https://github.com/settings/applications/new
|
||||
# For info on authorization callback URL visit here: https://authjs.dev/reference/core/providers_github#callback-url
|
||||
AUTH_GITHUB_ID=XXXXXXXX
|
||||
AUTH_GITHUB_SECRET=XXXXXXXX
|
||||
# Support OAuth login on preview deployments, see: https://authjs.dev/guides/basics/deployment#securing-a-preview-deployment
|
||||
# Set the following only when deployed. In this example, we can reuse the same OAuth app, but if you are storing users, we recommend using a different OAuth app for development/production so that you don't mix your test and production user base.
|
||||
# AUTH_REDIRECT_PROXY_URL=https://YOURAPP.vercel.app/api/auth
|
||||
|
||||
# Instructions to create kv database here: https://vercel.com/docs/storage/vercel-kv/quickstart and
|
||||
KV_URL=XXXXXXXX
|
||||
|
|
@ -18,3 +11,12 @@ KV_REST_API_URL=XXXXXXXX
|
|||
KV_REST_API_TOKEN=XXXXXXXX
|
||||
KV_REST_API_READ_ONLY_TOKEN=XXXXXXXX
|
||||
|
||||
# Instructions to create postgres database here: https://vercel.com/docs/storage/vercel-postgres/quickstart and
|
||||
POSTGRES_URL=XXXXXXXX
|
||||
POSTGRES_PRISMA_URL=XXXXXXXX
|
||||
POSTGRES_URL_NO_SSL=XXXXXXXX
|
||||
POSTGRES_URL_NON_POOLING=XXXXXXXX
|
||||
POSTGRES_USER=XXXXXXXX
|
||||
POSTGRES_HOST=XXXXXXXX
|
||||
POSTGRES_PASSWORD=XXXXXXXX
|
||||
POSTGRES_DATABASE=XXXXXXXX
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue