diff --git a/README.md b/README.md
index 1546979..6137d81 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,18 @@
+# Weather
+The weather iOS app provides free access to weather and geo data. This is a sample project used to apply best practices and keep up to date with modern programming languages.
+## Compatibility
+
+
+
+
+
+## Frameworks
+
+
+
+
+
+
## Test Coverage
### 📊 General Coverage
@@ -41,3 +56,45 @@
| WeatherApp.swift | 0 | 8 | 0%
---
+## App architecture
+The weather-tracking app has a single feature component. `Landing Page` is a self-contained feature component with some module dependencies as shown in the graph below.
+```mermaid
+graph TD;
+ WeatherApp-->LandingPage;
+ LandingPage-->RestAPI;
+ RestAPI-->EndpointManager;
+ RestAPI-->WTLogging;
+ EndpointManager-->WTLogging;
+ RestAPI-->Networking;
+ Networking-->WTLogging;
+ LandingPage-->DecoratorUI;
+```
+## App states
+| No location selected | Searching loading | Location details | Error handler
+| ---- | ---- | ---- | ---- |
+|
|
|
|
|
+
+## Card designs
+| Searching result | Details |
+| ---- | ---- |
+|
|
|
+
+
+
+### Steps to Run the App
+
+
+1. Clone the Repository
+ - Run the following command in your terminal:
+ ```
+ git clone git@github.com:mrugama/Weather.git
+ ```
+2. Open the Project
+ - Open the project in Xcode by double-clicking on Weather.xcodeproj.
+3. Update Key API
+ - Go to the file [EndpointManager](https://github.com/mrugama/Weather/blob/f79f74f70b42f9f3eae7eed950832a32c1bedf3c/WeatherCore/Sources/Foundation/EndpointManager/Implementation/EndpointManager%2BImplementation.swift#L16) and paste your own API key. Please go to [The Weather API documentation](https://www.weatherapi.com/docs/) to get your API Key
+4. Run the App
+ - Select the desired simulator or device in Xcode.
+ - Press the Run button (▶️) or use the shortcut Cmd + R to build and launch the app.
+
+