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

This reverts commit f91da2b5eb.
This commit is contained in:
Zvonimir Sabljic
2023-09-07 19:48:16 +02:00
parent 44a05b49b5
commit 9c751d247b
5 changed files with 45 additions and 19 deletions

View File

@@ -76,8 +76,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 self.args['step'] is not None and STEPS.index(self.args['step']) < STEPS.index('coding'):
@@ -96,9 +99,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):