diff options
author | clarkzjw <[email protected]> | 2023-02-23 22:24:05 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-23 22:24:05 -0800 |
commit | af610ab49194f12783fdfb2cc676c4877b22ed7c (patch) | |
tree | be43b7324d06886ad1ed41a015bd356ae9320d56 /dbstore | |
parent | a9fb6f252553ae49a2ba372434073824babe31e4 (diff) | |
download | swarm2fediverse-af610ab49194f12783fdfb2cc676c4877b22ed7c.tar.gz |
deploy: add Dockerfile and docker-compose.yaml
Diffstat (limited to 'dbstore')
-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 | ||