You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation basically shoves all the logic inside _generator.py in a way that makes it very hard to add new commands and re-use logic or extend the command with, for instance, new project types. We need a better architecture that allows to declare/hook in new project types using different templates so that we can allow new project types we have in the roadmap (asgi type is what I'm currently working on but also plugin is definitely something coming up in the future.
Ideally, the create cmd should take care of collecting all the shared into that the create cmd needs, take care of common tasks (like creating the folder or a config file) and then delegating to any custom hooks that are registered to handle new project types.
The text was updated successfully, but these errors were encountered:
Agreed, I think this is also valid not just for the create but for the run command. The whole CLI needs refactoring, I'm going to update the title to reflect this and try to work on it in the future
FabioRosado
changed the title
Improve create command architecture
Improve CLI architecture and refactoring
Feb 28, 2024
The current implementation basically shoves all the logic inside
_generator.py
in a way that makes it very hard to add new commands and re-use logic or extend the command with, for instance, new project types. We need a better architecture that allows to declare/hook in new project types using different templates so that we can allow new project types we have in the roadmap (asgi
type is what I'm currently working on but alsoplugin
is definitely something coming up in the future.Ideally, the
create
cmd should take care of collecting all the shared into that the create cmd needs, take care of common tasks (like creating the folder or aconfig
file) and then delegating to any custom hooks that are registered to handle new project types.The text was updated successfully, but these errors were encountered: