Added back the functionality for tech lead to break down the project and the developer to code task by task

This commit is contained in:
Zvonimir Sabljic
2023-09-02 17:29:20 +02:00
parent 190230a0e5
commit 990eb0d182
5 changed files with 45 additions and 19 deletions

View File

@@ -60,8 +60,11 @@ class Project:
self.architect = Architect(self)
self.architecture = self.architect.get_architecture()
# self.tech_lead = TechLead(self)
# self.development_plan = self.tech_lead.create_development_plan()
self.developer = Developer(self)
self.developer.set_up_environment();
self.tech_lead = TechLead(self)
self.development_plan = self.tech_lead.create_development_plan()
# TODO move to constructor eventually
if 'skip_until_dev_step' in self.args:
@@ -75,9 +78,6 @@ class Project:
self.save_files_snapshot(self.skip_until_dev_step)
# TODO END
self.developer = Developer(self)
self.developer.set_up_environment();
self.developer.start_coding()
def get_directory_tree(self, with_descriptions=False):