-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (34 loc) · 1.53 KB
/
.env.example
File metadata and controls
40 lines (34 loc) · 1.53 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
40
# Pastry Palace - Environment Variables Template
# Copy this file to .env.local for development or .env.production for production
# NEVER commit .env.local or .env.production to version control
# ============================================
# SUPABASE AUTHENTICATION
# ============================================
# Get these from your Supabase project dashboard
# https://supabase.com
REACT_APP_SUPABASE_URL=https://your-project.supabase.co
REACT_APP_SUPABASE_ANON_KEY=your-anon-key-here
# ============================================
# TELEGRAM BOT NOTIFICATIONS
# ============================================
# Create a bot with @BotFather on Telegram
# 1. Message @BotFather and follow prompts to create a bot
# 2. Copy the Bot Token from the response
# 3. Send a message to @userinfobot to get your Chat ID
# https://core.telegram.org/bots/api
# Bot token format: 123456789:ABCdefGHIjklmnoPQRstuvWXYZ
REACT_APP_TELEGRAM_BOT_TOKEN=your-bot-token-here
# Your Telegram Chat ID (user ID or group ID)
# Format: 123456789
REACT_APP_TELEGRAM_CHAT_ID=your-chat-id-here
# ============================================
# OPTIONAL: API ENDPOINTS
# ============================================
# If using a backend server, uncomment and configure:
# REACT_APP_API_URL=https://api.example.com
# ============================================
# OPTIONAL: ANALYTICS & MONITORING
# ============================================
# If using analytics, uncomment and configure:
# REACT_APP_GOOGLE_ANALYTICS_ID=UA-XXXXXXXXX-X
# REACT_APP_SENTRY_DSN=https://key@sentry.io/123456