Skip to content

Commit cfc7d6a

Browse files
authored
Merge pull request #20 from chhakuli123/19-feature-request-add-projects-via-cli
19 feature request add projects via cli
2 parents 4ce7840 + 3b9f865 commit cfc7d6a

File tree

6 files changed

+536
-382
lines changed

6 files changed

+536
-382
lines changed

.env.example

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Required from external tools.
2+
OPENAI_API_KEY="your_openai_api_key_here"
3+
PINECONE_API_KEY="your_pinecone_api_key_here"
4+
5+
6+
# Usually for free Pinecone account environment is "us-east-1"
7+
PINECONE_ENVIRONMENT="your_pinecone_environment_here"
8+
9+
# The index can be created directly or will
10+
# be created when you run prepare-data npm command
11+
PINECONE_INDEX_NAME="your_pinecone_index_name_here"
12+
13+
14+
# Pinecone index creation requires time so we wait for 3 minutes
15+
# If you don't want to wait, create the index on the Pinecone console
16+
# https://app.pinecone.io/organizations
17+
INDEX_INIT_TIMEOUT=5400000000
18+
19+
# Vercel configuration
20+
VERCEL="your_vercel_configuration_here"
21+
22+
# NextAuth configuration
23+
NEXTAUTH_URL="http://localhost:3000"
24+
NEXTAUTH_SECRET="your_nextauth_secret_here"
25+
26+
# GitHub OAuth credentials
27+
GITHUB_ID="your_github_id_here"
28+
GITHUB_SECRET="your_github_secret_here"

0 commit comments

Comments
 (0)