-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Architecture refactoring #61
Merged
toadharvard
merged 153 commits into
Desbordante:main
from
raf-nr:clean-architecture-refactor
Oct 7, 2024
Merged
Architecture refactoring #61
toadharvard
merged 153 commits into
Desbordante:main
from
raf-nr:clean-architecture-refactor
Oct 7, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
raf-nr
force-pushed
the
clean-architecture-refactor
branch
from
September 27, 2024 01:31
82f3a16
to
e5e1c21
Compare
raf-nr
force-pushed
the
clean-architecture-refactor
branch
from
October 1, 2024 14:56
3439ac5
to
84b3b83
Compare
raf-nr
force-pushed
the
clean-architecture-refactor
branch
from
October 1, 2024 15:53
84b3b83
to
51a9876
Compare
…and integration testing
…ting in the database
raf-nr
force-pushed
the
clean-architecture-refactor
branch
from
October 2, 2024 14:40
51a9876
to
4b1fcfa
Compare
raf-nr
force-pushed
the
clean-architecture-refactor
branch
2 times, most recently
from
October 2, 2024 21:58
ddb8541
to
896c9c5
Compare
Типы поправил, от sqlaclhemy_mixins полностью избавились. |
raf-nr
force-pushed
the
clean-architecture-refactor
branch
2 times, most recently
from
October 2, 2024 22:12
e78384e
to
f529031
Compare
raf-nr
force-pushed
the
clean-architecture-refactor
branch
from
October 2, 2024 22:13
f529031
to
b19ed84
Compare
toadharvard
approved these changes
Oct 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Clean architecture
The project architecture was completely redone in accordance with the principles of clean architecture:
domain
module, which does not depend on the “external world”.usecase
module. They manage domain entities and nothing else. They do not depend on the “ external world” in any way and communicate with it using interfaces.infrastructure
module.repository
module contains implementations of repositories - a design pattern that provides an abstraction for working with a data store, without specifying the details of the structure of this store.worker
module contains the implementation of all background task workers.Tests
Unit tests have been added for all module elements:
domain
repository
usecase