Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ matrix_type = None
|
|
25 |
|
26 |
# Matrix types and their descriptions
|
27 |
matrix_types = {
|
28 |
-
"Project
|
29 |
"Communications Plan Matrix": "Create a matrix showing stakeholders, communication methods, frequency, and responsibilities.",
|
30 |
"Project Kick-off Matrix": "Generate a matrix outlining key project details, goals, team roles, and initial timelines.",
|
31 |
"Decision Matrix": "Develop a matrix for evaluating options against criteria, with weighted scores analysis of alternatives style.",
|
@@ -299,5 +299,5 @@ def download_matrix(n_clicks):
|
|
299 |
|
300 |
if __name__ == '__main__':
|
301 |
print("Starting the Dash application...")
|
302 |
-
app.run(debug=
|
303 |
print("Dash application has finished running.")
|
|
|
25 |
|
26 |
# Matrix types and their descriptions
|
27 |
matrix_types = {
|
28 |
+
"Project Mangement Matrix": "Generate a project management matrix outlining all aspects of project management that summarizes components such as scope, schedule, budget, quality, resources, communications, risk, procurement, and stakeholder management.",
|
29 |
"Communications Plan Matrix": "Create a matrix showing stakeholders, communication methods, frequency, and responsibilities.",
|
30 |
"Project Kick-off Matrix": "Generate a matrix outlining key project details, goals, team roles, and initial timelines.",
|
31 |
"Decision Matrix": "Develop a matrix for evaluating options against criteria, with weighted scores analysis of alternatives style.",
|
|
|
299 |
|
300 |
if __name__ == '__main__':
|
301 |
print("Starting the Dash application...")
|
302 |
+
app.run(debug=False, host='0.0.0.0', port=7860)
|
303 |
print("Dash application has finished running.")
|