-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
27 lines (21 loc) · 980 Bytes
/
env.example
File metadata and controls
27 lines (21 loc) · 980 Bytes
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
# Appwrite Configuration
# Copy this file to .env and fill in your actual values
# Your Appwrite endpoint (e.g., https://cloud.appwrite.io/v1 or your self-hosted instance)
VITE_APPWRITE_ENDPOINT=https://cloud.appwrite.io/v1
# Your Appwrite project ID
VITE_APPWRITE_PROJECT_ID=your_project_id_here
# Database and Collection IDs
VITE_APPWRITE_DATABASE_ID=meme-vault
VITE_APPWRITE_MEMES_COLLECTION_ID=memes
VITE_APPWRITE_COMMENTS_COLLECTION_ID=comments
VITE_APPWRITE_REACTIONS_COLLECTION_ID=reactions
VITE_APPWRITE_COMMENT_REACTIONS_COLLECTION_ID=comment_reactions
# Storage bucket for meme images
VITE_APPWRITE_STORAGE_BUCKET_ID=meme-images
# Friend system collections
VITE_APPWRITE_FRIENDS_COLLECTION_ID=friends
VITE_APPWRITE_FRIEND_REQUESTS_COLLECTION_ID=friend_requests
VITE_APPWRITE_USER_PROFILES_COLLECTION_ID=user_profiles
VITE_APPWRITE_FRIEND_ACTIVITIES_COLLECTION_ID=friend_activities
# Optional: Enable debug mode (set to 'true' for development)
VITE_DEBUG_MODE=false