add kontor-blacksheep and kontor-piccolo as blueprints for new app
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
"""
|
||||
Import all of the Tables subclasses in your app here, and register them with
|
||||
the APP_CONFIG.
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from piccolo.conf.apps import AppConfig, table_finder
|
||||
|
||||
CURRENT_DIRECTORY = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
|
||||
APP_CONFIG = AppConfig(
|
||||
app_name="home",
|
||||
migrations_folder_path=os.path.join(
|
||||
CURRENT_DIRECTORY, "piccolo_migrations"
|
||||
),
|
||||
table_classes=table_finder(modules=["home.tables"], exclude_imported=True),
|
||||
migration_dependencies=[],
|
||||
commands=[],
|
||||
)
|
||||
Reference in New Issue
Block a user