-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.github.example
More file actions
68 lines (52 loc) · 2.58 KB
/
.env.github.example
File metadata and controls
68 lines (52 loc) · 2.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# GitHub Actions Environment Variables
# Add these to GitHub Repository Secrets (Settings > Secrets and variables > Actions)
# =============================================================================
# NOCODB CONFIGURATION
# =============================================================================
# NocoDB API access for content generation
NOCODB_API_KEY=your_nocodb_api_key_here
NOCODB_BASE_URL=https://your-nocodb-instance.com
NOCODB_BASE_ID=your_base_id_here
# =============================================================================
# TRANSISTOR.FM CONFIGURATION
# =============================================================================
# Transistor.fm API for podcast data sync
TRANSISTOR_API_KEY=your_transistor_api_key_here
TRANSISTOR_SHOW_ID=your_show_id_here
# =============================================================================
# GITHUB CONFIGURATION
# =============================================================================
# GitHub token for Actions to commit content files
# Requires: Contents (write), Metadata (read), Pull requests (write)
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
# Repository information (auto-filled by GitHub Actions)
GITHUB_REPOSITORY=${{ github.repository }}
GITHUB_REF=${{ github.ref }}
# =============================================================================
# NETLIFY INTEGRATION
# =============================================================================
# Netlify project ID for build triggers
NETLIFY_SITE_ID=5a20ec24-b427-4971-a742-f3f5c443143e
# Netlify build hook URL (optional - for manual build triggers)
NETLIFY_BUILD_HOOK_URL=https://api.netlify.com/build_hooks/your_build_hook_id_here
# =============================================================================
# CONTENT GENERATION SETTINGS
# =============================================================================
# Content generation behavior
OVERWRITE_EXISTING_CONTENT=false
GENERATE_GUEST_PROFILES=true
VALIDATE_FRONTMATTER=true
# Sync frequency and options
AUTO_SYNC_ENABLED=true
SYNC_SCHEDULE_CRON=0 */6 * * *
# =============================================================================
# INSTRUCTIONS FOR SETUP
# =============================================================================
# 1. Go to your GitHub repository
# 2. Settings > Secrets and variables > Actions
# 3. Add each variable as a Repository Secret
# 4. Make sure GITHUB_TOKEN has proper permissions
# 5. Test the GitHub Action workflow
# GitHub Actions that need these variables:
# - .github/workflows/sync-nocodb.yml (NocoDB → content files)
# - Any future content sync workflows