Ruby-Cogs/referrals/db/piccolo_conf.py
2025-05-23 02:30:00 -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"])