File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -49,9 +49,11 @@ For the backend application:
4949* The project, linter, and test configurations in ` backend/pyproject.toml ` .
5050* 3 settings classes (development, staging, production) with the super class in ` backend/src/config/settings/base.py ` .
5151* Event logger in ` backend/src/config/events.py ` .
52- * The ` Account ` object table model in ` backend/src/models/tables /account.py ` .
52+ * The ` Account ` object table model in ` backend/src/models/db /account.py ` .
5353* The ` Account ` object schema model in ` backend/src/models/schemas/account.py ` .
54- * PostgreSQL database via asynchronous SQLAlchemy 2.0 in ` backend/src/repository/database ` .
54+ * PostgreSQL database connection with asynchronous SQLAlchemy 2.0 in ` backend/src/repository/database.py ` .
55+ * A custom SQLAlchemy Base class in ` backend/src/repository/table.py `
56+ * PostgreSQL database connection with asynchronous SQLAlchemy 2.0 in ` backend/src/repository/database.py ` .
5557* Database-related events e.g. databse table registration by app startup in ` backend/src/repository/events.py ` .
5658* C. R. U. D. methods for ` Account ` object in ` backend/src/repository/crud/account.py ` .
5759* Table classes registration file in ` backend/src/repository/base.py ` .
@@ -202,7 +204,7 @@ backend/
202204 ├── events.py # Registration of global events
203205 ├── manager.py # Manage get settings
204206 ├── models/
205- ├── domains /
207+ ├── db /
206208 ├── account.py # Account class for database entity
207209 ├── schemas/
208210 ├── account.py # Account classes for data validation objects
You can’t perform that action at this time.
0 commit comments