-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathENV_TEMPLATE
More file actions
26 lines (26 loc) · 1.53 KB
/
ENV_TEMPLATE
File metadata and controls
26 lines (26 loc) · 1.53 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
###########################
# These are the environmental variables that you must define in your local repo's .env file. Do NOT add any to this
# repo. Boolean values should be the word "true" or "false" (though any case works since we lower() it)
###########################
# Shared variables used by multiple tests
###########################
## This will set the logging level
shared.LOGGING_LEVEL=logging.INFO
## This is the good API key used for testing. It can be either an API key from your Indigo Account or a secret in your
## local secrets.json file.
shared.GOOD_API_KEY=GOOD-KEY-HERE
## The full hostname prefix to use for API calls - will default to https://localhost:8176 (no trailing /)
shared.URL_PREFIX=https://localhost:8176
## This is the URL path to the version of the API that's being used (no trailing /)
shared.API_PREFIX=/v2/api
## This is the ID of the plugin that you are testing. Primarily used to restart the plugin if necessary.
shared.PLUGIN_ID=com.some.plugin
## Should the plugin be restarted in the debugger
shared.RESTART_IN_DEBUGGER=false
## This is the amount of time to wait for a plugin to restart.
shared.PLUGIN_RESTART_WAIT_TIME=5
## This is the amount of time to pause after doing an update. Defaults to 0, which means no pause. We've found that
## sometimes updates, like a variable update, may take longer to propagate appropriately, so after we set it we can
## pause a brief amount of time for everything to propagate. This is totally optional as we'll just use 0.0 (no pause)
## as the default.
shared.PAUSE_AFTER_UPDATE=0.0