-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
24 lines (18 loc) · 881 Bytes
/
.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
# For local development only:
# 1. Create a copy of this file and rename it to ".env"
# 2. Update the variables as per your local configuration
#
# For production: setup the required environment variables on
# your production devops server where the website will be built.
#
# To add new variables: add it to "/src/_data/env.js" file as well.
# Set the base URL of the website
BASE_URL=https://example.com
# Set this if you want to add Google Analytics to the website
GA_KEY=<add GA product key here>
# Set this if you want to add Microsoft Clarity Analytics to the website
MS_CLARITY_TAG=<Clarity tag goes here>
# Set this to enable WebMentions (See guide: https://sia.codes/posts/webmentions-eleventy-in-depth/)
WEBMENTION_IO_TOKEN=<Token goes here>
# Set this to production to test WebMentions
BUILD_ENV=production or development (by default)