-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.example
55 lines (42 loc) · 1.65 KB
/
.env.example
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
###
# Public vars are available on server and client
###
# PUBLIC_DEFAULT_LANGUAGE="en" # en is the default fallback
# Supabase
PUBLIC_SUPABASE="https://your-project.supabase.co"
PUBLIC_SUPABASE_API_KEY="your-anonymous-key"
# IIIF server configuration
PUBLIC_IIIF_CONFIGURATION="IIIF_CLOUD"
# PUBLIC_IIIF_CONFIGURATION="SUPABASE_CANTALOUPE"
# PUBLIC_IIIF_CANTALOUPE_PATH="/iiif"
# Usersnap feedback form
PUBLIC_USERSNAP_GLOBAL_API_KEY="usersnap-global-api-key"
PUBLIC_USERSNAP_PROJECT_API_KEY="usersnap-project-api-key"
# Google Analytics
PUBLIC_GOOGLE_ANALYTICS_TAG_ID="google-analytics-tag"
# Configuration
PUBLIC_ENABLE_USER_INVITE=TRUE # When 'TRUE' Org Admins can invite email/password users from the User Management UI
###
# Non-public vars stay on the server
###
# Optional: if the Astro server needs a different URL to reach
# Supabase, set this here. If not set, PUBLIC_SUPABASE will
# be used both on the server and the browser
# SUPABASE_SERVERCLIENT_URL ="https://your-project.supabase.co"
# Secret 'salt' to compute the realtime room identifiers
ROOM_SECRET="your-room-secret"
# IIIF server location
IIIF_URL="http://www.example.com/iiif/public/resources"
IIIF_KEY="your-iiif-server-api-key"
IIIF_PROJECT_ID="iiif-project-uuid-for-this-app"
# Supabase
SUPABASE_SERVICE_KEY="your-supabase-service-key"
# Mail - Used for Transactional Emails (invites, etc.)
MAIL_HOST=<your email host>
MAIL_PORT=<your email.port>
MAIL_USERNAME=<your email username>
MAIL_PASSWORD=<your email password>
MAIL_FROM_ADDRESS=<the from address for emails>
# Define this if you have a help page you would like to
# send users to.
# PUBLIC_HELP_REDIRECT="https://help.example.com"