-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathexample.env
99 lines (89 loc) · 3.18 KB
/
example.env
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
#
# Don't forget! You MUST rename/copy this file as '.env'
#
# The environment variables below are parsed and included using npm package 'dotenv'
# See https://github.com/motdotla/dotenv for more information and examples
#
####################################################################################
# Cloudflare Credentials
# Nothing happens without them!
####################################################################################
CLOUDFLARE_AUTH_EMAIL=
#
CLOUDFLARE_AUTH_KEY=
# Cloudflare Zone Identification
# You MUST provide one of the following two site identifiers
# If both are provided, the zone-id wins, i.e. site-name is ignored
####################################################################################
CLOUDFLARE_ZONE_ID=
# OR
CLOUDFLARE_SITE_NAME=
# Script Name
####################################################################################
#
# The reference name you want to use for your worker script.
#
# Defaults to Unix time at launch
#
SCRIPT_NAME=
# Route Matching Pattern(s)
####################################################################################
#
# Example of a single route:
# ENABLED_PATTERNS="some.example.domain/*"
#
# To enable multiple routes, separate your patterns with a comma
# ENABLED_PATTERNS="some.example.domain/*,another.example.domain/*"
#
# NOTE: Any existing patterns not included in either ENABLED_PATTERNS
# or DISABLED_PATTERNS will be DELETED!
#
ENABLED_PATTERNS=
#
# Conversely, you can define one or more pattern for the worker to ignore,
# i.e. NOT execute if the pattern matches
#
DISABLED_PATTERNS=
# Metadata file
####################################################################################
#
# You can define a relative path to a .json file for your secrets vault.
#
# Please refer to the CF Worker documentation for specific details:
# https://developers.cloudflare.com/workers/api/resource-bindings/secrets-vault/
#
METADATA_PATH=
# Additional Webpack Options
####################################################################################
#
# These variables provide some additional control over Worker deployment:
#
# Do not minify the bundled script before uploading to Cloudflare.
# This can be useful if you want to reason about your script in the CF-Dashboard
DO_NOT_MINIFY=
#
# Skip uploading the bundled worker script to Cloudflare.
# This will still apply any changes to your route matching pattern(s)
DO_NOT_UPLOAD=
#
# DELETE ALL ROUTE PATTERNS AND WORKER SCRIPT, then exit - that's it!
RESET_EVERYTHING=
#
# Disable colors in console output
NO_COLORS=
#
# Disable the use of emoji in console output (you monster 👹)
NO_EMOJI=
#
# Disable console output verbosity
NO_VERBOSE=
# Example Custom Variables
####################################################################################
#
# You can set custom variables here, and have Webpack inject them in the build step
# Check out webpack.config.js to see how this works.
# See also https://webpack.js.org/plugins/define-plugin for more details and examples
#
# This example variable will be injected into our worker script as INJECTED_VARIABLE,
# thereby adding 'Guten Tag' to the list of hellos in example.worker.js
EXAMPLE_GREETING="Guten Tag"