mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-01-01 00:50:01 +01:00
17 lines
477 B
Python
17 lines
477 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_planing'],
|
|
'full_stack_developer': ['create_scripts', 'coding']
|
|
}
|
|
STEPS = [
|
|
'project_description',
|
|
'user_stories',
|
|
'user_tasks',
|
|
'architecture',
|
|
'development_planing',
|
|
'create_scripts',
|
|
'coding'
|
|
]
|