-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
65 lines (57 loc) · 2.37 KB
/
.env.example
File metadata and controls
65 lines (57 loc) · 2.37 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
# Since the ".env" file is gitignored, you can use the ".env.example" file to
# build a new ".env" file when you clone the repo. Keep this file up-to-date
# when you add new variables to `.env`.
# This file will be committed to version control, so make sure not to have any
# secrets in it. If you are cloning this repo, create a copy of this file named
# ".env" and populate it with your secrets.
# When adding additional environment variables, the schema in "/src/env.js"
# should be updated accordingly.
# Next Auth
# You can generate a new secret on the command line with:
# openssl rand -base64 32
# https://next-auth.js.org/configuration/options#secret
# NEXTAUTH_SECRET=""
NEXTAUTH_URL="http://localhost:3000"
# Next Auth GitHub Provider
GITHUB_CLIENT_ID=""
GITHUB_CLIENT_SECRET=""
PROMPT_FOLDER="src/server/prompts"
GITHUB_APP_ID="12345"
GITHUB_APP_USERNAME="67890"
GITHUB_APP_NAME="otto-ai-app"
GITHUB_PRIVATE_KEY="sample-private-key"
GITHUB_WEBHOOK_SECRET="sample-webhook-secret"
SMEE_URL="https://sample.smee.io"
TARGET_URL="http://localhost:3000/api/github/webhooks"
OPENAI_API_KEY="key-goes-here"
ANTHROPIC_API_KEY="key-goes-here"
GROQ_API_KEY="key-goes-here"
CEREBRAS_API_KEY="key-goes-here"
DATABASE_URL="postgres://postgres:postgres@localhost:5432/otto_db_dev"
DATABASE_TEST_URL="postgres://postgres:postgres@localhost:5432/otto_db_test?ssl=false"
NEXT_PUBLIC_GITHUB_CLIENT_ID="sample-client-id"
NEXT_PUBLIC_FIGMA_PLUGIN_ID="abc"
AWS_ACCESS_KEY_ID="sample-access-key"
AWS_SECRET_ACCESS_KEY="sample-secret-access-key"
AWS_REGION="us-west-2"
BUCKET_NAME="jacob-snapshots"
POSTHOG_API_KEY="sample-api-key"
TMP_DIR="/tmp"
PUBSUB_REDIS_URL="redis://localhost:6379/0"
PUBSUB_REDIS_TEST_URL="redis://localhost:6379/1"
PORTKEY_API_KEY="sample-api-key"
PORTKEY_VIRTUAL_KEY_OPENAI="sample-api-key"
PORTKEY_VIRTUAL_KEY_GOOGLE="sample-api-key"
PORTKEY_VIRTUAL_KEY_ANTHROPIC="sample-api-key"
PORTKEY_VIRTUAL_KEY_PERPLEXITY="sample-api-key"
PORTKEY_VIRTUAL_KEY_GROQ="sample-api-key"
PORTKEY_VIRTUAL_KEY_CEREBRAS="sample-api-key"
SES_EMAIL_SOURCE="sample-email@example.com"
NEXT_PUBLIC_JIRA_CLIENT_ID="sample-client-id"
JIRA_CLIENT_ID="sample-client-id"
JIRA_CLIENT_SECRET="sample-client-secret"
NEXT_PUBLIC_LINEAR_CLIENT_ID="sample-client-id"
LINEAR_CLIENT_ID="sample-client-id"
LINEAR_CLIENT_SECRET="sample-client-secret"
LINEAR_WEBHOOK_SECRET="sample-webhook-secret"
NEXT_PUBLIC_POSTHOG_API_KEY="sample-api-key"