Created definitions for sqlite database file
This commit is contained in:
parent
5ee3f89647
commit
b7d3f2d0d2
1 changed files with 3 additions and 0 deletions
|
|
@ -3,5 +3,8 @@ import os
|
||||||
ROOT_PATH = project_root = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
|
ROOT_PATH = project_root = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
|
||||||
SECRETS_FILE_PATH = ROOT_PATH + '/secrets/auth.yaml'
|
SECRETS_FILE_PATH = ROOT_PATH + '/secrets/auth.yaml'
|
||||||
|
|
||||||
|
DATABASE_FILE_PROJECT_PATH = f"/db/database.db"
|
||||||
|
SQLITE_URL = f"sqlite://{DATABASE_FILE_PROJECT_PATH}"
|
||||||
|
|
||||||
BGG_MAX_THING_BOARDGAMES = 20
|
BGG_MAX_THING_BOARDGAMES = 20
|
||||||
BGG_PLAY_PAGE_SIZE = 100
|
BGG_PLAY_PAGE_SIZE = 100
|
||||||
Loading…
Reference in a new issue