-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
83 lines (62 loc) · 3.22 KB
/
Copy path.env.example
File metadata and controls
83 lines (62 loc) · 3.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
############################
# core-data-places
############################
# Path to the config file to use.
CONFIG_FILE=config.dev.json
# URL of the JSON config file used to customize the core-data-places-deployment. It is recommended to store this file
# in the /content/settings directory on the content repository to allowing editing via TinaCMS
CONFIG_URL=https://raw.githubusercontent.com/...
# If true, Netlify's CDN caching will be disabled
DISABLE_CACHE=false
# Name of the GitHub branch that will serve as the storage for TinaCMS content.
# For multi-env deployments, set per-env: `develop` for staging, `main` for prod.
# This way each env's TinaCMS commits land on its own branch and content
# promotion (staging -> prod) is a deliberate `git merge develop main`.
# Defaults to `main` if unset.
GITHUB_BRANCH=develop
# Name of the GitHub user or organization that owns the GitHub storage repository
GITHUB_OWNER=owner-name
# Name of the GitHub content repository
GITHUB_REPO=repo-name
# Personal access token used to read/write to the GitHub content repository
GITHUB_PERSONAL_ACCESS_TOKEN=github_pat_...
# If "true", TinaCMS content will be stored locally
TINA_PUBLIC_IS_LOCAL=false
# Relative path to the local TinaCMS GitHub content repository
TINA_LOCAL_CONTENT_PATH=../../my-content-repo
# Name of the MongoDB collection. This value should be unique for all deploys.
MONGODB_COLLECTION_NAME=my_collection
# Name of the MongoDB database. For production instances, this should be "tinacms".
MONGODB_NAME=my_database
# URI of the MongoDB database
MONGODB_URI=mongodb+srv://...
# If true, map data will be preloaded at build time. This will require a rebuild each time we want to update the site
# to display the most up-to-date map data. This should always be set to "true" for sites that use detailed polygon
# map data.
PRELOAD_MAP=false
# AWS credentials for media storage
S3_ACCESS_KEY=abcdefg
S3_SECRET_KEY=hijklmnop
S3_BUCKET=my-bucket
S3_REGION=us-east-1
S3_FOLDER=subfolder1
# If true, Astro endpoints and pages will be generated at build time
STATIC_BUILD=false
# URL for a georeferenced map library JSON, which should retrieve an array of objects with "name" and "url" keys.
TINA_PUBLIC_MAP_LIBRARY_URL=https://...
# If true, content loaders will not be run. This option is useful in development environments when we don't want to
# load all of the data each time the development server restarts.
USE_CONTENT_CACHE=false
# Should be set to either "update" (the default behavior; will add new records and modify existing ones if there are changes),
# "add" (will not fetch data for existing records, only add new ones), or "refresh" (will clear the data store and load from scratch)
# Use "add" if your goal is to fill in records that threw errors, or to complete an aborted build;
# Use "refresh" if records in the source have been deleted
CONTENT_MODE=update
PUBLIC_BASE_URL=http://localhost:8888/
# Clerk SSO — required for deployed sites (as of v1.9.0; not needed when TINA_PUBLIC_IS_LOCAL=true).
# See docs/upgrade-notes.md for the migration from Keycloak / username-password auth.
TINA_PUBLIC_CLERK_PUBLIC_KEY=pk_live_...
TINA_PUBLIC_CLERK_ORG_ID=org_...
CLERK_SECRET=sk_live_...
# Accessibility testing
A11Y_HOST=https://mysite.netlify.app