mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-28 15:17:53 +01:00
32 lines
708 B
Python
32 lines
708 B
Python
APP_TYPES = ['Web App', 'Script', 'Mobile App', 'Chrome Extension']
|
|
ROLES = {
|
|
'product_owner': ['project_description', 'user_stories', 'user_tasks'],
|
|
'architect': ['architecture'],
|
|
'tech_lead': ['development_planning'],
|
|
'full_stack_developer': ['create_scripts', 'coding'],
|
|
'dev_ops': ['environment_setup'],
|
|
}
|
|
STEPS = [
|
|
'project_description',
|
|
'user_stories',
|
|
'user_tasks',
|
|
'architecture',
|
|
'environment_setup',
|
|
'development_planning',
|
|
'coding'
|
|
]
|
|
|
|
IGNORE_FOLDERS = [
|
|
'.git',
|
|
'.idea',
|
|
'.vscode',
|
|
'__pycache__',
|
|
'node_modules',
|
|
'package-lock.json',
|
|
'venv',
|
|
'dist',
|
|
'build',
|
|
]
|
|
|
|
PROMPT_DATA_TO_IGNORE = {'directory_tree', 'name'}
|