File tree Expand file tree Collapse file tree 20 files changed +68
-68
lines changed
asynchronous-authorization
langchain-fastapi-py/backend
langchain-fastapi-py-starter/backend
langchain-fastapi-py/backend
vercel-ai-next-js-starter
langchain-fastapi-py/backend
call-apis-on-users-behalf
langchain-fastapi-py/backend
langchain-react-spa-js/apps/agents
langchain-fastapi-py/backend Expand file tree Collapse file tree 20 files changed +68
-68
lines changed Original file line number Diff line number Diff line change 1- APP_BASE_URL = ' http://localhost:8000'
1+ APP_BASE_URL = " http://localhost:8000"
22
3- AUTH0_SECRET = ' use [openssl rand -hex 32] to generate a 32 bytes value'
4- AUTH0_DOMAIN = ' '
5- AUTH0_CLIENT_ID = ' '
6- AUTH0_CLIENT_SECRET = ' '
3+ AUTH0_SECRET = " use [openssl rand -hex 32] to generate a 32 bytes value"
4+ AUTH0_DOMAIN = " {yourDomain} "
5+ AUTH0_CLIENT_ID = " {yourClientId} "
6+ AUTH0_CLIENT_SECRET = " {yourClientSecret} "
77
8- OPENAI_API_KEY = ' '
8+ OPENAI_API_KEY = " "
99
1010# LANGGRAPH
1111LANGGRAPH_API_URL = http://localhost:54367
1212
1313# Shop API URL
1414# SHOP_API_URL="http://localhost:3001/api/shop"
15- # SHOP_API_AUDIENCE="https://api.shop-online-demo.com"
15+ # SHOP_API_AUDIENCE="https://api.shop-online-demo.com"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LANGCHAIN_CALLBACKS_BACKGROUND=false
44# Auth0 configuration
55APP_BASE_URL = " http://localhost:3000"
66AUTH0_SECRET = " use [openssl rand -hex 32] to generate a 32 bytes value"
7- AUTH0_DOMAIN = " https:// {yourDomain}"
7+ AUTH0_DOMAIN = " {yourDomain}"
88AUTH0_CLIENT_ID = " {yourClientId}"
99AUTH0_CLIENT_SECRET = " {yourClientSecret}"
1010# Use your SHOP_API_AUDIENCE or a separate LangGraph API audience
@@ -29,4 +29,4 @@ LANGGRAPH_API_URL=http://localhost:54367
2929
3030# Shop API URL
3131# SHOP_API_URL=<your-shop-api-url>
32- # SHOP_API_AUDIENCE=sample-shop-api
32+ # SHOP_API_AUDIENCE=sample-shop-api
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ OPENAI_API_KEY="YOUR_API_KEY"
33# Auth0 configuration
44APP_BASE_URL = " http://localhost:3000"
55AUTH0_SECRET = " use [openssl rand -hex 32] to generate a 32 bytes value"
6- AUTH0_DOMAIN = " https:// {yourDomain}"
6+ AUTH0_DOMAIN = " {yourDomain}"
77AUTH0_CLIENT_ID = " {yourClientId}"
88AUTH0_CLIENT_SECRET = " {yourClientSecret}"
99
1010# Database configuration
11- DATABASE_URL = " postgresql://postgres:postgres@localhost:5432/ai_documents_db"
11+ DATABASE_URL = " postgresql://postgres:postgres@localhost:5432/ai_documents_db"
1212
1313# Auth0 FGA
1414# FGA_STORE_ID=<your-fga-store-id>
Original file line number Diff line number Diff line change 11# Auth0
2- AUTH0_DOMAIN = " <auth0-domain> "
2+ AUTH0_DOMAIN = " {yourDomain} "
33# M2M Client for CIBA
4- AUTH0_CLIENT_ID = " <auth0-client-id> "
5- AUTH0_CLIENT_SECRET = " <auth0-client-secret> "
4+ AUTH0_CLIENT_ID = " {yourClientId} "
5+ AUTH0_CLIENT_SECRET = " {yourClientSecret} "
66
77# API
88STOCK_API_URL = http://localhost:8081/
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ Copy the `.env.example` file to `.env` and fill in the values for the following
2525
2626``` sh
2727# Auth0
28- AUTH0_DOMAIN=" <auth0-domain> "
29- # Client for CIBA
30- AUTH0_CLIENT_ID=" <auth0-client-id> "
31- AUTH0_CLIENT_SECRET=" <auth0-client-secret> "
28+ AUTH0_DOMAIN=" {yourDomain} "
29+ # M2M Client for CIBA
30+ AUTH0_CLIENT_ID=" {yourClientId} "
31+ AUTH0_CLIENT_SECRET=" {yourClientSecret} "
3232
3333# API
3434STOCK_API_URL=http://an-api-url
Original file line number Diff line number Diff line change 1- APP_BASE_URL = ' http://localhost:8000'
1+ APP_BASE_URL = " http://localhost:8000"
22
3- AUTH0_SECRET = ' use [openssl rand -hex 32] to generate a 32 bytes value'
4- AUTH0_DOMAIN = ' '
5- AUTH0_CLIENT_ID = ' '
6- AUTH0_CLIENT_SECRET = ' '
3+ AUTH0_SECRET = " use [openssl rand -hex 32] to generate a 32 bytes value"
4+ AUTH0_DOMAIN = " {yourDomain} "
5+ AUTH0_CLIENT_ID = " {yourClientId} "
6+ AUTH0_CLIENT_SECRET = " {yourClientSecret} "
77
8- OPENAI_API_KEY = ' '
8+ OPENAI_API_KEY = " "
Original file line number Diff line number Diff line change 1- APP_BASE_URL = ' http://localhost:8000'
1+ APP_BASE_URL = " http://localhost:8000"
22
3- AUTH0_SECRET = ' use [openssl rand -hex 32] to generate a 32 bytes value'
4- AUTH0_DOMAIN = ' '
5- AUTH0_CLIENT_ID = ' '
6- AUTH0_CLIENT_SECRET = ' '
3+ AUTH0_SECRET = " use [openssl rand -hex 32] to generate a 32 bytes value"
4+ AUTH0_DOMAIN = " {yourDomain} "
5+ AUTH0_CLIENT_ID = " {yourClientId} "
6+ AUTH0_CLIENT_SECRET = " {yourClientSecret} "
77
8- OPENAI_API_KEY = ' '
8+ OPENAI_API_KEY = " "
99
1010# Database
1111DATABASE_URL = " postgresql+psycopg://postgres:postgres@localhost:5432/ai_documents_db"
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ LANGCHAIN_CALLBACKS_BACKGROUND=false
44# Auth0 configuration
55APP_BASE_URL = " http://localhost:3000"
66AUTH0_SECRET = " use [openssl rand -hex 32] to generate a 32 bytes value"
7- AUTH0_DOMAIN = " https:// {yourDomain}"
7+ AUTH0_DOMAIN = " {yourDomain}"
88AUTH0_CLIENT_ID = " {yourClientId}"
99AUTH0_CLIENT_SECRET = " {yourClientSecret}"
1010
1111# Database configuration
12- DATABASE_URL = " postgresql://postgres:postgres@localhost:5432/ai_documents_db"
12+ DATABASE_URL = " postgresql://postgres:postgres@localhost:5432/ai_documents_db"
1313
1414# LANGGRAPH
1515LANGGRAPH_API_URL = http://localhost:54367
@@ -22,4 +22,4 @@ LANGGRAPH_API_URL=http://localhost:54367
2222# ANTHROPIC_API_KEY="YOUR_API_KEY"
2323
2424# Turn on demo mode
25- # NEXT_PUBLIC_DEMO="true"
25+ # NEXT_PUBLIC_DEMO="true"
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ OPENAI_API_KEY="YOUR_API_KEY"
33# Auth0 configuration
44APP_BASE_URL = " http://localhost:3000"
55AUTH0_SECRET = " use [openssl rand -hex 32] to generate a 32 bytes value"
6- AUTH0_DOMAIN = " https:// {yourDomain}"
6+ AUTH0_DOMAIN = " {yourDomain}"
77AUTH0_CLIENT_ID = " {yourClientId}"
88AUTH0_CLIENT_SECRET = " {yourClientSecret}"
99
1010# Database configuration
11- DATABASE_URL = " postgresql://postgres:postgres@localhost:5432/ai_documents_db"
11+ DATABASE_URL = " postgresql://postgres:postgres@localhost:5432/ai_documents_db"
1212
1313# Optional: Other model keys
1414# ANTHROPIC_API_KEY="YOUR_API_KEY"
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ OPENAI_API_KEY="YOUR_API_KEY"
33# Auth0 configuration
44APP_BASE_URL = " http://localhost:3000"
55AUTH0_SECRET = " use [openssl rand -hex 32] to generate a 32 bytes value"
6- AUTH0_DOMAIN = " https:// {yourDomain}"
6+ AUTH0_DOMAIN = " {yourDomain}"
77AUTH0_CLIENT_ID = " {yourClientId}"
88AUTH0_CLIENT_SECRET = " {yourClientSecret}"
99
1010# Database configuration
11- DATABASE_URL = " postgresql://postgres:postgres@localhost:5432/ai_documents_db"
11+ DATABASE_URL = " postgresql://postgres:postgres@localhost:5432/ai_documents_db"
1212
1313# Optional: Other model keys
1414# ANTHROPIC_API_KEY="YOUR_API_KEY"
You can’t perform that action at this time.
0 commit comments