-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (33 loc) · 1.7 KB
/
.env.example
File metadata and controls
39 lines (33 loc) · 1.7 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
# =============================================
# PayGuard Environment Configuration
# =============================================
# COPY THIS FILE, RENAME IT TO '.env', AND FILL IN YOUR REAL API KEYS
# DO NOT COMMIT YOUR REAL '.env' FILE TO GITHUB!
# =============================================
# 1. SOLANA BLOCKCHAIN SETTINGS
# -----------------------------------------------------------------------------
# Network to use: 'devnet', 'testnet', or 'mainnet-beta'
SOLANA_NETWORK=devnet
# Your wallet's private key (keep this extremely secret!)
SOLANA_WALLET_PRIVATE_KEY=your_solana_wallet_private_key_here
# 2. CROSSMINT NFT API (Use Staging for Testing)
# -----------------------------------------------------------------------------
# Get these from your Crossmint console: https://www.crossmint.com/console
CROSSMINT_PROJECT_ID=your_crossmint_project_id_here
CROSSMINT_API_KEY=your_crossmint_project_secret_key_here
# 3. AI API KEYS
# -----------------------------------------------------------------------------
# Mistral AI API Key: https://console.mistral.ai/
MISTRAL_API_KEY=your_mistral_api_key_here
# ElevenLabs API Key: https://elevenlabs.io/speech-synthesis
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
# 4. CORAL V1 (Decentralized AI Fallback)
# -----------------------------------------------------------------------------
# Check Coral Protocol docs for the exact key name and how to get it: https://coral.computer/
CORAL_API_KEY=your_coral_v1_api_key_here
# Coral API endpoint (if required)
CORAL_API_ENDPOINT=https://api.coral.computer/v1/inference
# 5. APPLICATION SETTINGS (Optional)
# -----------------------------------------------------------------------------
# Enable debug mode for development
DEBUG=True