-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (32 loc) · 2.59 KB
/
.env.example
File metadata and controls
40 lines (32 loc) · 2.59 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
# Pumpkin Hub — Environment Configuration Template
# Copy this file to .env and fill in the values for local development and Docker Compose
# DO NOT commit the actual .env file to GitHub — it contains secrets
# ────────────────────────────────────────────────────────────────────────────
# OAuth 2.0 Providers — Multi-Provider Authentication
# ────────────────────────────────────────────────────────────────────────────
# GitHub OAuth App
# Create at: https://github.com/settings/developers
GITHUB_CLIENT_ID=your_github_client_id_here
GITHUB_CLIENT_SECRET=your_github_client_secret_here
GITHUB_REDIRECT_URI=http://localhost:8080/api/v1/auth/github/callback
# Google OAuth App
# Create at: https://console.cloud.google.com/apis/credentials
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
# Discord OAuth App
# Create at: https://discord.com/developers/applications
DISCORD_CLIENT_ID=your_discord_client_id_here
DISCORD_CLIENT_SECRET=your_discord_client_secret_here
# ────────────────────────────────────────────────────────────────────────────
# JWT — Authentication & Authorization
# ────────────────────────────────────────────────────────────────────────────
# JWT signing secret (use a strong random string in production)
# Generate: openssl rand -base64 32
JWT_SECRET=dev_jwt_secret_change_me_in_production
# ────────────────────────────────────────────────────────────────────────────
# GitHub App — Binary Publishing & CI/CD Integration
# ────────────────────────────────────────────────────────────────────────────
# Optional — set these only if you're using GitHub App for automated publishing
GITHUB_APP_ID=
GITHUB_APP_PRIVATE_KEY=
GITHUB_APP_WEBHOOK_SECRET=