-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (35 loc) · 1.55 KB
/
Copy path.env.example
File metadata and controls
44 lines (35 loc) · 1.55 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
41
42
43
44
# ============================================
# API-Football Configuration
# ============================================
# Get your free API key at: https://www.api-football.com/
API_FOOTBALL_KEY=your_api_key_here
API_FOOTBALL_BASE_URL=https://v3.football.api-sports.io
# ============================================
# Flamengo Team Configuration
# ============================================
# Flamengo's team ID in API-Football (will be discovered during setup)
FLAMENGO_TEAM_ID=123
# ============================================
# Google Calendar Configuration
# ============================================
# Calendar ID where events will be created
# Find it in Google Calendar Settings > "Integrate calendar" > Calendar ID
GOOGLE_CALENDAR_ID=your_calendar_id@group.calendar.google.com
# Path to your Google service account JSON file
# This file contains credentials for accessing Google Calendar API
GOOGLE_SERVICE_ACCOUNT_PATH=/volume1/scripts/flamengo-calendar-sync/service-account.json
# ============================================
# Notification Configuration (Optional)
# ============================================
# Enable/disable notifications for errors
NOTIFICATION_ENABLED=false
# Notification type: pushover | discord | slack | email
NOTIFICATION_TYPE=pushover
# Pushover configuration (if NOTIFICATION_TYPE=pushover)
NOTIFICATION_PUSHOVER_TOKEN=
NOTIFICATION_PUSHOVER_USER=
# Discord webhook (if NOTIFICATION_TYPE=discord)
NOTIFICATION_DISCORD_WEBHOOK=
# Slack webhook (if NOTIFICATION_TYPE=slack)
NOTIFICATION_SLACK_WEBHOOK=
# =============================