-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
50 lines (38 loc) · 1.54 KB
/
Copy path.env.example
File metadata and controls
50 lines (38 loc) · 1.54 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
# Bechdel Test Environment Variables
# Copy this file to .env and fill in your actual values
# ============================================
# API Keys
# ============================================
# Claude AI API Key (required for advanced analytics)
# Get your key at: https://console.anthropic.com/
CLAUDE_API_KEY=sk-ant-api03-xxxxx
# The Movie Database API Key (required for movie data)
# Get your key at: https://www.themoviedb.org/settings/api
THEMOVIEDB=your_tmdb_api_key_here
# OMDB API Key (optional - for additional movie data)
# Get your key at: http://www.omdbapi.com/apikey.aspx
OMDB=your_omdb_api_key_here
# ============================================
# Database Configuration
# ============================================
# MongoDB Connection String
# For local MongoDB: mongodb://localhost:27017/bechdelTest
# For Docker: mongodb://admin:password@mongodb:27017/bechdelTest?authSource=admin
MONGODB_URI=mongodb://localhost:27017/bechdelTest
# ============================================
# Application Configuration
# ============================================
# Environment (development, production, test)
NODE_ENV=development
# Application Port
PORT=3000
# Cache Busting (optional - set automatically during build)
# CACHE_BUST=
# ============================================
# Deployment Configuration (for deploy-local.sh)
# ============================================
# Create .env.deployment.local for deployment secrets
# This file should NOT be committed to git
#
# Example .env.deployment.local:
# CLAUDE_API_KEY=sk-ant-api03-xxxxx