forked from janlay/openai-cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.dev.vars.example
More file actions
23 lines (18 loc) · 889 Bytes
/
.dev.vars.example
File metadata and controls
23 lines (18 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Local development environment variables
# Copy this file to .dev.vars and fill in your actual values
# Never commit .dev.vars to version control
# Cloudflare account identifier (get from dash.cloudflare.com)
CLOUDFLARE_ACCOUNT_ID=your_account_id_here
# Encryption token for ai.json.enc
# This must match the password used to encrypt the ai.json.enc file:
# openssl enc -aes-256-cbc -a -pbkdf2 -iter 100000 -salt \
# -in ai.json -out ai.json.enc -pass pass:"${CRYPTOKEN}"
AI_JSON_CRYPTOKEN=your_crypto_token_here
# Cloudflare AI Gateway authentication token
# Get from your Cloudflare dashboard → Workers & Pages → AI Gateway
CLOUDFLARE_AIG_TOKEN=your_aig_token_here
# Optional: override source URL for encrypted AI config
# Default is https://mcp.fufuni.pp.ua/ai.json.enc
# AI_JSON_ENC_URL=https://mcp.fufuni.pp.ua/ai.json.enc
# Optional: enable debug logging
DEBUG=false