feat: database with tortoise orm
Python Lint CI / ty (push) Successful in 1m22s
Python Lint CI / ruff (push) Successful in 1m22s
Python Lint CI / ruff-format-check (push) Successful in 1m22s

This commit is contained in:
2026-07-01 11:43:10 +02:00
parent deba8a73f9
commit c93a74b0f4
14 changed files with 248 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"connections": {
"default": "postgres://tout-doux:tout-doux@postgres:5432/tout-doux"
},
"apps": {
"models": {
"models": ["app.models"],
"default_connection": "default",
"migrations": "app.migrations"
}
}
}