PySimpleSocial/src/piccolo_conf.py

17 lines
396 B
Python
Raw Normal View History

2022-10-04 21:13:26 +02:00
from piccolo.conf.apps import AppRegistry
from piccolo.engine.postgres import PostgresEngine
DB = PostgresEngine(
config={
2023-03-13 15:59:03 +01:00
"host": "mouse.db.elephantsql.com",
"user": "zubtlqiv",
"password": "l9bgeChDsTHJUwSFex2N2kSbLZ8VkRch",
"database": "zubtlqiv",
2022-10-04 21:13:26 +02:00
}
)
# A list of paths to piccolo apps
# e.g. ['blog.piccolo_app']
APP_REGISTRY = AppRegistry(apps=[])