-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
25 lines (22 loc) · 974 Bytes
/
Copy path.env.local.example
File metadata and controls
25 lines (22 loc) · 974 Bytes
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
# GitHub OAuth Configuration
# Register a GitHub OAuth App to get these credentials:
# 1. Go to https://github.com/settings/developers
# 2. Click "New OAuth App"
# 3. Set callback URL: http://localhost:5000/auth/callback (for local dev)
# 4. Copy Client ID and Client Secret to variables below
# For production deployment, see deployment documentation for GitHub App setup
GITHUB_OAUTH_CLIENT_ID=your_client_id_here
GITHUB_OAUTH_CLIENT_SECRET=your_client_secret_here
# Flask Session Secret (for CSRF protection during OAuth)
# Generate with: python -c "import secrets; print(secrets.token_hex(32))"
FLASK_SECRET_KEY=your_secret_key_here
# AWS Credentials (for infrastructure deployment)
# IMPORTANT: Never commit real credentials - use this template only
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=us-west-2
AWS_DEFAULT_REGION=us-west-2
AWS_PROFILE=
AWS_SESSION_TOKEN=
# Optional: Linear API key (if using Linear for project management)
LINEAR_API_KEY=