mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-01-02 09:26:09 +01:00
18 lines
526 B
Python
18 lines
526 B
Python
APP_TYPES = ['Web App', 'Script', 'Mobile App (unavailable)', 'Chrome Extension (unavailable)']
|
|
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',
|
|
'development_planning',
|
|
'environment_setup',
|
|
'development'
|
|
]
|