forked from jasonhedman/toolkit.dev
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
106 lines (77 loc) · 2.65 KB
/
.env.example
File metadata and controls
106 lines (77 loc) · 2.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# ----------
# DATABASE
# ----------
# Toolkit uses Prisma as an ORM for its Postgres database
DATABASE_URL="postgresql://postgres:password@localhost:5432/toolkit"
# ----------
# Redis
# ----------
# Toolkit uses Redis to support resumable streams
REDIS_URL=redis://localhost:6379
# ----------
# Blob Storage
# ----------
# Toolkit uses Vercel Blob for blob storage. In local development we mock the interface
# If you want to be able to upload files to https://vercel.com/docs/vercel-blob
# Replace this token with your generated token
BLOB_READ_WRITE_TOKEN=mockmockmock
# This is not required if you are using hosted Vercel Blob
VERCEL_BLOB_API_URL=http://localhost:6969
# ----------
# INFERENCE
# ----------
# This is required to call the LLM
OPENROUTER_API_KEY=""
# ----------
# AUTHENTICATION
# ----------
# Toolkit uses Auth.js for user authentication. Get more information here: https://authjs.dev/
# The URL at which your app is running
NEXTAUTH_URL="http://localhost:3000"
# run `pnpm dlx auth secret` to securely generate and set this value
AUTH_SECRET=""
# Authentication providers
# Adding credentials for a given auth provider will automatically include it in the sign-in options and
# dynamically set the provider options for Auth.js
# Only uncomment the providers for which you have credentials
# Discord Provider - https://authjs.dev/getting-started/providers/discord
# AUTH_DISCORD_ID=
# AUTH_DISCORD_SECRET=
# Google Provider - https://authjs.dev/getting-started/providers/google
# AUTH_GOOGLE_ID=
# AUTH_GOOGLE_SECRET=
# Github Provider - https://authjs.dev/getting-started/providers/github
# AUTH_GITHUB_ID=
# AUTH_GITHUB_SECRET=
# Twitter Provider - https://authjs.dev/getting-started/providers/twitter
# AUTH_TWITTER_ID=
# AUTH_TWITTER_SECRET=
# Notion Provider - https://authjs.dev/getting-started/providers/notion
# AUTH_NOTION_ID=
# AUTH_NOTION_SECRET=
# Spotify Provider - https://authjs.dev/getting-started/providers/spotify
# AUTH_SPOTIFY_ID=
# AUTH_SPOTIFY_SECRET=
# Strava Provider - https://authjs.dev/getting-started/providers/strava
# AUTH_STRAVA_ID=
# AUTH_STRAVA_SECRET=
# ----------
# TOOLKIT CONFIG (Optional)
# ----------
# To use the Web Search Toolkit - https://dashboard.exa.ai/api-keys
# EXA_API_KEY=
# To use the Code Interpreter Toolkit - https://e2b.dev/dashboard
# E2B_API_KEY=
# To use the Memory Toolkit - https://app.mem0.ai/dashboard/api-keys
# MEM0_API_KEY=
# Get an OpenAI and/or xAI API key to use the Image Toolkit
# OPENAI_API_KEY=
# XAI_API_KEY=
# FAL_API_KEY=
# FIREWORKS_API_KEY=
# LUMA_API_KEY=
# ----------
# GitHub Queries
# ----------
# If you want to be able to make GitHub queries from the landing page
# GITHUB_TOKEN=