Skip to content

ASP.NET Core MVC web application that interacts with WeatherAPI.com, processes the data, and displays it to the user

Notifications You must be signed in to change notification settings

benjanknoetze/dotnet-mvc-weather-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.NET MVC Weather App

A .NET MVC weather application containerised for deployment, fetching data from WeatherAPI.com.

Features

  • Fetches weather data from WeatherAPI.com
  • Search with autocomplete suggestions
  • Displays current weather information

Getting Started

Prerequisites

  • Docker installed on your machine
  • .NET environment

Running the Application

  1. Pull the Docker Image:

    docker pull benjan/weatherapp:latest
  2. Run the Docker Container:

    docker run -d -p 8080:80 benjan/weatherapp:latest
  3. Access the Application: Open your web browser and go to http://localhost:8080.

Development

Building the Docker Image

  1. Clone the Repository:

    git clone https://github.com/benjanknoetze/dotnet-mvc-weather-app.git
    cd dotnet-mvc-weather-app
  2. Build the Docker Image:

    docker build -t weatherapp .
  3. Run the Docker Container:

    docker run -d -p 8080:80 weatherapp

Accessing the Application for Development

About

ASP.NET Core MVC web application that interacts with WeatherAPI.com, processes the data, and displays it to the user

Resources

Stars

Watchers

Forks