-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 808 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (16 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# GitHub OAuth application credentials
# Create an OAuth App at https://github.com/settings/developers
GITHUB_CLIENT_ID=your_github_client_id_here
GITHUB_CLIENT_SECRET=your_github_client_secret_here
# The callback URL registered in your GitHub OAuth App.
# Dev default: http://localhost:8000/auth/github/callback
GITHUB_CALLBACK_URL=http://localhost:8000/auth/github/callback
# A long random secret used to sign JWT session tokens.
# Generate with: python -c "import secrets; print(secrets.token_hex(32))"
JWT_SECRET=change_me_to_a_long_random_secret
# Set to "true" in production (requires HTTPS)
COOKIE_SECURE=false
# The URL of the frontend (used for CORS and post-login redirect)
FRONTEND_URL=http://localhost:5173
# Vite API URL (forwarded to the built frontend)
VITE_API_URL=http://localhost:8000