firebase-rust-sdk 0.1.0-beta

Unofficial Rust port of Firebase C++ SDK
# Firebase Integration Test Configuration
# Copy this file to .env and fill in your Firebase project details

# Firebase API Key (from Firebase Console > Project Settings > Web API Key)
FIREBASE_API_KEY=your-api-key-here

# Firebase Project ID (from Firebase Console > Project Settings)
FIREBASE_PROJECT_ID=your-project-id

# Firestore Database ID (optional, defaults to "(default)")
# IMPORTANT: You must enable Firestore in your Firebase project first!
# Visit: https://console.firebase.google.com/project/{your-project-id}/firestore
# Choose "Firestore in Native Mode" to create the database
# FIREBASE_DATABASE_ID=(default)

# Test user credentials for authentication tests
# Create a test user in Firebase Console > Authentication
TEST_USER_EMAIL=test@example.com
TEST_USER_PASSWORD=TestPassword123!

# Optional: Auth token for real-time listener tests
# Generate via: firebase login:ci or from Firebase Admin SDK
# FIREBASE_AUTH_TOKEN=your-auth-token-here

# Optional: Custom token for testing custom auth
# Generate this from your Firebase Admin SDK
# TEST_CUSTOM_TOKEN=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...