-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
51 lines (40 loc) · 1.54 KB
/
.env.local.example
File metadata and controls
51 lines (40 loc) · 1.54 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
# ==================================
# LOCAL OVERRIDE CONFIGURATION
# ==================================
# This file is for local development overrides
# Copy to .env.local to override default .env settings
# .env.local is git-ignored and takes precedence over .env
# ==================================
# COMMON LOCAL OVERRIDES
# ==================================
# If your backend runs on a different port
# VITE_API_BASE_URL=http://localhost:4000
# If you want to test with a different app name
# VITE_APP_NAME=ProHire-Dev
# Enable debug logging locally
# VITE_DEBUG=true
# VITE_VERBOSE_LOGGING=true
# Test with mock data
# VITE_USE_MOCK_DATA=true
# ==================================
# TESTING INTEGRATIONS LOCALLY
# ==================================
# Test OAuth locally (use development credentials)
# VITE_GOOGLE_CLIENT_ID=your_dev_google_client_id
# VITE_GOOGLE_REDIRECT_URI=http://localhost:5173/auth/google/callback
# VITE_LINKEDIN_CLIENT_ID=your_dev_linkedin_client_id
# VITE_LINKEDIN_REDIRECT_URI=http://localhost:5173/auth/linkedin/callback
# ==================================
# FEATURE FLAGS FOR LOCAL TESTING
# ==================================
# Test features locally before enabling in production
# VITE_ENABLE_SOCIAL_LOGIN=true
# VITE_ENABLE_EMAIL_VERIFICATION=true
# VITE_ENABLE_TWO_FACTOR_AUTH=true
# ==================================
# NOTES
# ==================================
# - .env.local overrides .env
# - Perfect for personal development settings
# - Never commit this file to Git
# - Each developer can have their own .env.local