Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions cloudflare-worker/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Cloudflare Worker Environment Configuration
#
# Copy this file to .env and fill in your values
# These are only needed for local development with `wrangler dev`

# Cloudflare Account ID
# Find at: https://dash.cloudflare.com/ -> select account -> Account ID in sidebar
CLOUDFLARE_ACCOUNT_ID=your_account_id_here

# D1 Database ID
# Get from: wrangler d1 create voicemode-telemetry
CLOUDFLARE_DATABASE_ID=your_d1_database_id_here

# KV Namespace ID
# Get from: wrangler kv:namespace create "RATE_LIMITS"
CLOUDFLARE_KV_NAMESPACE_ID=your_kv_namespace_id_here

# Deployed Worker URL (after deployment)
WORKER_URL=https://voicemode-telemetry.YOUR_SUBDOMAIN.workers.dev
19 changes: 19 additions & 0 deletions cloudflare-worker/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Environment variables
.env

# Wrangler outputs
.wrangler/
worker/

# Node modules (if using local development)
node_modules/

# IDE
.vscode/
.idea/

# MacOS
.DS_Store

# Logs
*.log
469 changes: 469 additions & 0 deletions cloudflare-worker/ARCHITECTURE.md

Large diffs are not rendered by default.

Loading
Loading