-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.env.example
More file actions
63 lines (50 loc) · 3.19 KB
/
.env.example
File metadata and controls
63 lines (50 loc) · 3.19 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
# Cal.com OAuth Configuration
EXPO_PUBLIC_CALCOM_OAUTH_CLIENT_ID=your_oauth_client_id_here
EXPO_PUBLIC_CALCOM_OAUTH_REDIRECT_URI=your_oauth_redirect_uri_here
# =============================================================================
# OAUTH REDIRECT URL FORMATS BY BROWSER
# =============================================================================
#
# | Browser | Redirect URL Format | Notes |
# |---------|------------------------------------------------------------------|----------------------------------------------------|
# | Chrome | https://<id>.chromiumapp.org/oauth/callback | Get ID from `chrome://extensions` |
# | Brave | https://<id>.chromiumapp.org/oauth/callback | Same extension package as Chrome |
# | Edge | https://<id>.chromiumapp.org/oauth/callback | Different ID from Chrome |
# | Firefox | https://<uuid>.extensions.allizom.org/oauth/callback | UUID from `browser.identity.getRedirectURL()` |
# | Safari | https://<team>.<bundle>.appextension/oauth/callback | Check Xcode project configuration |
#
# =============================================================================
# =============================================================================
# FIREFOX OAUTH CONFIG
# =============================================================================
EXPO_PUBLIC_CALCOM_OAUTH_CLIENT_ID_FIREFOX=
EXPO_PUBLIC_CALCOM_OAUTH_REDIRECT_URI_FIREFOX=
# =============================================================================
# SAFARI OAUTH CONFIG
# =============================================================================
EXPO_PUBLIC_CALCOM_OAUTH_CLIENT_ID_SAFARI=
EXPO_PUBLIC_CALCOM_OAUTH_REDIRECT_URI_SAFARI=
# =============================================================================
# EDGE OAUTH CONFIG
# =============================================================================
EXPO_PUBLIC_CALCOM_OAUTH_CLIENT_ID_EDGE=
EXPO_PUBLIC_CALCOM_OAUTH_REDIRECT_URI_EDGE=
# ===========================================
# CACHE CONFIGURATION (all values in MINUTES)
# ===========================================
# Default cache stale time for all queries (default: 5 minutes)
EXPO_PUBLIC_CACHE_STALE_TIME_MINUTES=5
# Garbage collection time - how long to keep unused cache (default: 1440 minutes - 24 hours)
EXPO_PUBLIC_CACHE_GC_TIME_MINUTES=1440
# Bookings cache stale time (default: 5 minutes)
# After this time, data is considered stale and will refetch in background
EXPO_PUBLIC_BOOKINGS_CACHE_STALE_TIME_MINUTES=5
# Event Types cache stale time (default: -1 = never stale)
# -1 means data only refreshes on mutations (create/update/delete) or manual pull-to-refresh
EXPO_PUBLIC_EVENT_TYPES_CACHE_STALE_TIME_MINUTES=-1
# Schedules (Availability) cache stale time (default: -1 = never stale)
EXPO_PUBLIC_SCHEDULES_CACHE_STALE_TIME_MINUTES=-1
# User Profile cache stale time (default: -1 = never stale)
EXPO_PUBLIC_USER_PROFILE_CACHE_STALE_TIME_MINUTES=-1
# required for dev/local
EXPO_PUBLIC_COMPANION_DEV_URL=http://localhost:8081