mirror of
https://github.com/imjasonh/meet-ticker
synced 2026-07-07 00:32:48 +00:00
- Built full-stack Meeting Cost Ticker for Google Meet add-ons - Real-time person-minutes/hours tracking with smart unit switching - Google Meet SDK integration with proper session management - OAuth 2.0 authentication flow for Meet API access - Single server architecture (Cloud Function serves frontend + backend) - Responsive UI with 1-second updates for meeting duration - Automatic new meeting detection and reset - Secure configuration with environment variables - Auto-generated workspace deployment manifest 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
No EOL
505 B
Text
12 lines
No EOL
505 B
Text
# Meeting Cost Ticker Configuration Template
|
|
# Copy this file to a secure location and set these environment variables
|
|
|
|
# OAuth 2.0 Credentials (from Google Cloud Console)
|
|
CLIENT_ID=your_client_id_here
|
|
CLIENT_SECRET=your_client_secret_here
|
|
|
|
# Optional: Override default region (defaults to us-central1)
|
|
REGION=us-central1
|
|
|
|
# The deployment script will automatically construct the redirect URI based on
|
|
# your project and region: https://${REGION}-${PROJECT_ID}.cloudfunctions.net/meet-ticker/oauthcallback |