-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (24 loc) · 1.26 KB
/
.env.example
File metadata and controls
28 lines (24 loc) · 1.26 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
# For Next.js frontend
NEXT_PUBLIC_APPWRITE_ENDPOINT=https://cloud.appwrite.io/v1
NEXT_PUBLIC_APPWRITE_PROJECT_ID=your_appwrite_project_id
NEXT_PUBLIC_APPWRITE_DATABASE_ID=your_appwrite_database_id
NEXT_PUBLIC_APPWRITE_VOCABULARY_COLLECTION_ID=your_vocabulary_collection_id
NEXT_PUBLIC_APPWRITE_GRAMMAR_COLLECTION_ID=your_grammar_collection_id
NEXT_PUBLIC_APPWRITE_USER_PROGRESS_COLLECTION_ID=your_user_progress_collection_id
NEXT_PUBLIC_APPWRITE_USER_TIERS_COLLECTION_ID=your_user_tiers_collection_id
# For setup script to make it easier to set up the Appwrite collections
APPWRITE_ENDPOINT=https://cloud.appwrite.io/v1
APPWRITE_PROJECT_ID=your_appwrite_project_id
APPWRITE_API_KEY=your_appwrite_api_key_with_collection_creation_permissions
APPWRITE_DATABASE_ID=your_appwrite_database_id
APPWRITE_VOCABULARY_COLLECTION_ID=your_vocabulary_collection_id
APPWRITE_GRAMMAR_COLLECTION_ID=your_grammar_collection_id
APPWRITE_USER_PROGRESS_COLLECTION_ID=your_user_progress_collection_id
# Anthropic API key for Claude
ANTHROPIC_API_KEY=your_anthropic_api_key
# API keys for authentication
GLOBAL_API_KEY=your_global_api_key_for_all_users
ADMIN_API_KEY=your_admin_api_key_for_management_operations
# Server configuration
PORT=3000
LOG_LEVEL=info # Options: trace, debug, info, warn, error, fatal