Added ignored folders to the function for building a directory tree + added get_files function + changed the way Agents are imported

This commit is contained in:
Zvonimir Sabljic
2023-08-02 10:45:22 +02:00
parent de9b01bc72
commit 70617bf80b
3 changed files with 35 additions and 8 deletions

View File

@@ -13,5 +13,17 @@ STEPS = [
'architecture',
'development_planning',
'environment_setup',
'development'
'coding'
]
IGNORE_FOLDERS = [
'.git',
'.idea',
'.vscode',
'__pycache__',
'node_modules',
'package-lock.json',
'venv',
'dist',
'build',
]