Skip to content

Commit

Permalink
Merge pull request #1085 from hackforla/mattyweb/issue1073
Browse files Browse the repository at this point in the history
Get Dash project set up for new developers
  • Loading branch information
mattyweb authored Apr 13, 2021
2 parents 456d037 + d833ba0 commit 50292c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/dash/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


API_HOST = environ.get('API_HOST') or 'https://dev-api.311-data.org'
PRELOAD = bool(environ.get('PRELOAD'))
PRELOAD = environ.get('PRELOAD', 'False').lower() in ['true', '1']
DASH_FILES = environ.get('DASH_FILES') or 'dashboards'

0 comments on commit 50292c3

Please sign in to comment.