forked from cf-toolsuite/tanzu-genai-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
65 lines (55 loc) · 4.28 KB
/
.env.example
File metadata and controls
65 lines (55 loc) · 4.28 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
# Tanzu GenAI Showcase - Environment Variables
# This file serves as a template for setting up GitHub repository secrets
# Use the create-gh-secrets.sh script to create GitHub secrets from your .env file
# ===== Cloud Foundry Authentication =====
# Required for authenticating with Cloud Foundry during deployment
CF_PASSWORD=your_cf_password_here # Used by all projects for CF authentication with username/password
CF_SSO_REFRESH_TOKEN=your_sso_refresh_token_here # Alternative to CF_PASSWORD when using SSO authentication
# ===== Project-Specific API Keys =====
# ----- dotnet-extensions-ai -----
# Travel Advisor application using .NET and AI extensions
GOOGLEMAPS_API_KEY=your_key_here # Required for location services
# Obtain from: https://developers.google.com/maps/documentation/javascript/get-api-key
# ----- go-fiber-langchaingo -----
# Congress chatbot using Go Fiber and LangChain
CONGRESS_API_KEY=your_key_here # Required for accessing Congress API
# Obtain from: https://api.congress.gov/sign-up/
# ----- java-spring-ai-mcp -----
# Flight tracker application using Spring AI and MCP
AVIATION_STACK_ACCESS_KEY=your_key_here # Used by java-spring-ai-mcp/server for flight data
# Obtain from: https://aviationstack.com/signup/free
OPENAI_API_KEY=your_key_here # Used by java-spring-ai-mcp/client and other projects
# Obtain from: https://platform.openai.com/api-keys
# ----- java-spring-langgraph-mcp-angular -----
# Event finder application using Spring, LangGraph, and Angular
TICKETMASTER_API_KEY=your_key_here # Required for event data
# Obtain from: https://developer.ticketmaster.com/products-and-docs/apis/getting-started/
CITIES_API_KEY=your_key_here # Required for city data
# Obtain from: https://api.api-ninjas.com/v1/city
# ----- js-langchain-react -----
# News aggregator using LangChain and React
NEWS_API_KEY=your_key_here # Required for news data (also used by php-symfony-neuron)
# Obtain from: https://newsapi.org/register
LLM_API_KEY=your_key_here # Maps to API_KEY in the application
# Use your OpenAI API key or other LLM provider key
# ----- php-symfony-neuron -----
# Financial advisor using PHP Symfony and Neuron
STOCK_API_KEY=your_key_here # Required for stock market data
# Obtain from: https://www.alphavantage.co/support/#api-key
EDGAR_API_KEY=your_key_here # Required for SEC EDGAR database access
# Obtain from: https://www.sec.gov/edgar/sec-api-documentation
LINKEDIN_CLIENT_ID=your_id_here # Required for LinkedIn integration
LINKEDIN_CLIENT_SECRET=your_secret_here # Required for LinkedIn integration
# Obtain both from: https://www.linkedin.com/developers/apps/new
# ----- py-django-crewai -----
# Movie recommendation chatbot using Django and CrewAI
DJANGO_SECRET_KEY=your_secret_key_here # Required for Django security
# Generate with: python -c "import secrets; print(secrets.token_urlsafe(50))"
TMDB_API_KEY=your_key_here # Required for movie database access
# Obtain from: https://www.themoviedb.org/signup
SERPAPI_API_KEY=your_key_here # Required for web search capabilities
# Obtain from: https://serpapi.com/users/sign_up
# ----- ruby-sinatra-fastmcp -----
# Flight tracking bot using Ruby Sinatra and FastMCP
AVIATIONSTACK_API_KEY=your_key_here # Required for flight data
# Obtain from: https://aviationstack.com/signup/free