diff options
author | Galen Guyer <galen@galenguyer.com> | 2021-02-25 22:31:38 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2021-02-25 22:31:38 -0500 |
commit | 51079aa249b509e9160dd675fed13b3bacda661c (patch) | |
tree | 31437842911749e868d88be1a481426c012805e2 /config.env.py | |
parent | 987a1db2a7b5d84aa906c23eb586930df7cd0d50 (diff) |
Add import history command
Diffstat (limited to 'config.env.py')
-rw-r--r-- | config.env.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.env.py b/config.env.py index 5241003..a56a930 100644 --- a/config.env.py +++ b/config.env.py @@ -15,5 +15,5 @@ LOG_LEVEL = environ.get('PACKET_LOG_LEVEL', 'INFO') VERSION = '0.1.0' # SQLAlchemy config -SQLALCHEMY_DATABASE_URI = environ.get('POLLER_DATABASE_URI', 'sqlite:////tmp/rit-covid-poller.db') +SQLALCHEMY_DATABASE_URI = environ.get('POLLER_DATABASE_URI', f'sqlite:///data.db') SQLALCHEMY_TRACK_MODIFICATIONS = False |