Ruby-Cogs/appeals/db/piccolo_conf.py
Valerie 477974d53c
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run
Upload 2 Cogs & Update README
2025-05-23 01:30:53 -04:00

8 lines
199 B
Python

import os
from piccolo.conf.apps import AppRegistry
from piccolo.engine.sqlite import SQLiteEngine
DB = SQLiteEngine(path=os.getenv("DB_PATH"))
APP_REGISTRY = AppRegistry(apps=["db.piccolo_app"])