-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
30 lines (22 loc) · 863 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
25
26
27
28
29
30
# Google Cloud Platform stuff
STORAGE_PROJECT = "ShowScraper"
STORAGE_CREDENTIALS = "credentials/showscraper-e6cfbdc5d45c.json"
GCS_BUCKET = "show-scraper-data"
GCS_TEST_BUCKET = "show-scraper-data-test"
# Skip connecting to a database?
NO_DB = "true"
# Skip connecting to Google Cloud Storage?
NO_GCS = "false"
# Print events out as they are loaded?
PRINT_EVENTS = "true"
# Should we print the full JSON output? (if false, a condensed form is shown)
# Has no effect if PRINT_EVENTS != "true"
PRINT_FULL_DETAIL = "true"
# Rescue scraping errors, so other scrapers proceed?
RESCUE_SCRAPING_ERRORS = "true"
# Should we just update the list of venues, then quit (no actual scraping)?
ONLY_UPDATE_VENUES = "false"
# are we in the test environment? (set automatically when running tests)
TEST = "false"
# Will write a condensed log output to here
LOG_PATH=""