-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
111 lines (84 loc) · 3.79 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# -------------------------------------------
# GeoNames username
# -------------------------------------------
# Required for fetching location data
#
# Sign up at for a free username at http://www.geonames.org/login
# Limit 10,000 credits/month on the free plan
SECRET_GEONAMES_USERNAME=''
# -------------------------------------------
# RapidAPI key for Meteostat weather data
# -------------------------------------------
# Required for fetching Meteostat weather data
#
# Sign up for the free Base plan at https://rapidapi.com/meteostat/api/meteostat/
# Limit 500 requests/month on the free Base plan
SECRET_METEOSTAT_API_KEY=''
# -------------------------------------------
# *************** STOP **********************
# If you're developing features for temperature-blanket.com,
# you probably don't need to set or change any other variables below here
# *******************************************
# -------------------------------------------
# -------------------------------------------
# RapidAPI key for Meteostat weather data
# -------------------------------------------
# The dev API key is used to save requests if using a paid Meteostat plan through RapidAPI
# Use a seperate RapidAPI account from the paid one used above
#
# Sign up for the free Base plan at https://rapidapi.com/meteostat/api/meteostat/
# Limit 500 requests/month on the free Base plan
# You don't need to set the dev API key unless using a paid plan from RapidAPI
SECRET_METEOSTAT_DEV_API_KEY=''
# -------------------------------------------
# Headless Wordpress site
# -------------------------------------------
# Project gallery pages are stored in a headless Wordpress site (see the documentation in the README file for more information)
#
# You don't need to change the base URL or auth key
# unless you are creating a new Wordpress site to use as a backend database
# Note: In development, POST requests to create new project gallery pages
# will be rejected by https://wp.tbnkt.com. This is expected, because the auth key is a secret specific to the Wordpress instalation.
PUBLIC_WORDPRESS_BASE_URL=https://wp.tbnkt.com
SECRET_WORDPRESS_PROJECT_CREATION_AUTH_KEY=''
# -------------------------------------------
# RapidAPI proxy header authentication key
# -------------------------------------------
# Serve the Yarn Colorways API through RapidAPI
#
# You don't need to set this key unless you are creating a new RapidAPI project
SECRET_RAPID_API_PROXY_HEADER_KEY=''
# -------------------------------------------
# General site info
# -------------------------------------------
#
# You don't need to change these unless you are creating a new site different from temperature-blanket.com
PUBLIC_SITE_TITLE='Temperature Blanket'
PUBLIC_BASE_URL='https://temperature-blanket.com'
PUBLIC_BASE_DOMAIN_NAME='temperature-blanket.com'
# -------------------------------------------
# Microsoft Clarity ID
# -------------------------------------------
# Used for analytics
#
# You don't need to set this unless you are creating a new site and want to use Microsoft Clarity for analytics
PUBLIC_MICROSOFT_CLARITY_ID=''
# -------------------------------------------
# Supporters
# -------------------------------------------
# A JSON stringified `Supporters` object (see `src/lib/types/supporter-types.d.ts`)
PUBLIC_SUPPORTERS=''
# -------------------------------------------
# Affiliate Yarns
# -------------------------------------------
# A JSON stringified array of `AffiliateYarn` objects (see `src/lib/types/color-types.d.ts`)
PUBLIC_AFFILIATE_YARNS=''
# -------------------------------------------
# Other configuration links
# -------------------------------------------
PUBLIC_FACEBOOK_LINK=''
PUBLIC_KOFI_LINK=''
PUBLIC_GITHUB_LINK=''
# An affiliate refferal link to https://coolors.co
PUBLIC_COOLORS_LINK=''
PUBLIC_YARN_SEARCH_REQUEST_FORM_LINK=''