forked from TTL-Legacy/TTL-Legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (29 loc) · 1.23 KB
/
Copy path.env.example
File metadata and controls
33 lines (29 loc) · 1.23 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
# --- Network Configuration ---
# Stellar/Soroban network (testnet, mainnet, or standalone)
STELLAR_NETWORK=testnet
# RPC URL for interacting with the Stellar network
STELLAR_RPC_URL=https://soroban-testnet.stellar.org
# Network passphrase for transaction signing (e.g., "Test SDF Network ; September 2015" for testnet)
STELLAR_NETWORK_PASSPHRASE=
# --- Contract Configuration ---
# The contract ID after deployment (e.g., CC...)
CONTRACT_TTL_VAULT=
# Stellar key pair identity name configured in Stellar CLI (e.g. "deployer")
STELLAR_IDENTITY=deployer
# --- Frontend Configuration ---
VITE_STELLAR_NETWORK=testnet
VITE_STELLAR_RPC_URL=https://soroban-testnet.stellar.org
# --- Backend Configuration (Reminder Service) ---
# API key for sending email reminders
REMINDER_EMAIL_API_KEY=
# API key for sending SMS reminders
REMINDER_SMS_API_KEY=
# Secret key used to encrypt reminder data (email/phone) before storage
REMINDER_ENCRYPTION_SECRET=
# --- Push Notifications (Firebase Cloud Messaging) ---
# FCM server key (OAuth2 access token or legacy server key)
FCM_SERVER_KEY=
# Firebase project ID (e.g. ttl-legacy-prod)
FCM_PROJECT_ID=
# How often (seconds) the background scheduler checks for due notifications
NOTIFICATION_SCHEDULER_INTERVAL_SECS=60