diff options
author | clarkzjw <[email protected]> | 2023-02-24 00:51:04 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-24 00:51:04 -0800 |
commit | 4bb5cbdc16ecf5f6e5961373816d4c741d54ee51 (patch) | |
tree | ea85f216881bacb54f579cae9814e2f85aa1abe5 /dbstore/peewee_store.py | |
parent | a9fb6f252553ae49a2ba372434073824babe31e4 (diff) | |
parent | 391abe42adf3bf065d9543ada068b696b00efdcd (diff) | |
download | swarm2fediverse-4bb5cbdc16ecf5f6e5961373816d4c741d54ee51.tar.gz |
Merge branch 'deploy/cicd'
added Dockerfile and docker-compose.yaml with krakend api gateway and
monitoring using influxdb and grafana dashboard
Diffstat (limited to 'dbstore/peewee_store.py')
-rw-r--r-- | dbstore/peewee_store.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbstore/peewee_store.py b/dbstore/peewee_store.py index c8d9c22..d05c642 100644 --- a/dbstore/peewee_store.py +++ b/dbstore/peewee_store.py | |||
@@ -5,7 +5,7 @@ TOOT_VISIBILITY_UNLISTED = "unlisted" | |||
5 | TOOT_VISIBILITY_PRIVATE = "private" | 5 | TOOT_VISIBILITY_PRIVATE = "private" |
6 | 6 | ||
7 | 7 | ||
8 | db = SqliteDatabase("checkinbot.db") | 8 | db = SqliteDatabase("database/checkinbot.db") |
9 | db.connect(reuse_if_open=True) | 9 | db.connect(reuse_if_open=True) |
10 | 10 | ||
11 | 11 | ||