From 5aca071ac2e6e66c21c06621eb2068ba4e6f3093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Trkan?= Date: Thu, 13 Nov 2025 14:16:21 +0100 Subject: [PATCH 1/2] update report --- 7project/README.md | 49 ++++++------------------------------------ 7project/src/README.md | 0 2 files changed, 6 insertions(+), 43 deletions(-) create mode 100644 7project/src/README.md diff --git a/7project/README.md b/7project/README.md index 9a4d705..91f7a07 100644 --- a/7project/README.md +++ b/7project/README.md @@ -1,43 +1,6 @@ -# Lab 6: Design Document for Course Project - -| Lab 6: | Design Document for Course Project | -| ----------- | ---------------------------------- | -| Subject: | DAT515 Cloud Computing | -| Deadline: | **September 19, 2025 23:59** | -| Grading: | No Grade | -| Submission: | Group | - -## Table of Contents - -- [Table of Contents](#table-of-contents) -- [1. Design Document (design.md)](#1-design-document-designmd) - -The design document is the first deliverable for your project. -We separated this out as a separate deliverable, with its own deadline, to ensure that you have a clear plan before you start coding. -This part only needs a cursory review by the teaching staff to ensure it is sufficiently comprehensive, while still realistic. -The teaching staff will assign you to a project mentor who will provide guidance and support throughout the development process. - -## 1. Design Document (design.md) - -You are required to prepare a design document for your application. -The design doc should be brief, well-organized and easy to understand. -The design doc should be prepared in markdown format and named `design.md` and submitted in the project group's repository. -Remember that you can use [mermaid diagrams](https://github.com/mermaid-js/mermaid#readme) in markdown files. - -The design doc **should include** the following sections: - -- **Overview**: A brief description of the application and its purpose. -- **Architecture**: The high-level architecture of the application, including components, interactions, and data flow. -- **Technologies**: The cloud computing technologies or services used in the application. -- **Deployment**: The deployment strategy for the application, including any infrastructure requirements. - -The design document should be updated throughout the development process and reflect the final implementation of your project. - -Optional sections may include: - -- Security: The security measures implemented in the application to protect data and resources. -- Scalability: The scalability considerations for the application, including load balancing and auto-scaling. -- Monitoring: The monitoring and logging strategy for the application to track performance and detect issues. -- Disaster Recovery: The disaster recovery plan for the application to ensure business continuity in case of failures. -- Cost Analysis: The cost analysis of running the application on the cloud, including pricing models and cost-saving strategies. -- References: Any external sources or references used in the design document. +# Personal Finance Tracker +## Folder Structure +- meetings: Contains note from meetings +- scr: Source code for the project +- checklist: Project checklist and self assessment tracking +- report.md: Detailed report of the project \ No newline at end of file diff --git a/7project/src/README.md b/7project/src/README.md new file mode 100644 index 0000000..e69de29 From a152ecbe4d41dd24062d072a97754a03c5022bf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Trkan?= Date: Thu, 13 Nov 2025 14:30:31 +0100 Subject: [PATCH 2/2] fix main.py --- 7project/src/backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7project/src/backend/main.py b/7project/src/backend/main.py index eb1edd1..dd5e481 100644 --- a/7project/src/backend/main.py +++ b/7project/src/backend/main.py @@ -1,4 +1,4 @@ import uvicorn if __name__ == "__main__": - uvicorn.run("app.app:app", host="0.0.0.0", log_level="info") + uvicorn.run("app.app:fastApi", host="0.0.0.0", log_level="info")