This application provides real-time weather information. Users can query weather conditions for different locations worldwide.
- Real-time weather updates.
- Search by city
- Simple and intuitive interface.
To run the application in a Docker container, follow these steps:
- Docker installed on your system.
-
Build the Docker Image
Navigate to the project directory and build the image using the following command:
docker build -t weather-app .
-
Run the Container
After building the image, run the application by starting a container with the following command:
docker run -d -p 5000:5000 weather-app
This command runs the application in a detached mode, mapping port 5000 of the container to port 5000 on your host.
-
Accessing the Application
Open a web browser and navigate to
http://localhost:5000
to access the application.
Feel free to contribute to the project by submitting a pull request or opening an issue.
Python 3.10