diff --git a/README.md b/README.md index 1465596..e0861a6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ # weather app +Weather app which calls the openweathermap.org api to retreive the current weather based on the provided location. + +![](images/weather_app.png) + ## Build Container Container can be built with: ``` @@ -8,4 +12,7 @@ podman build -t ghcr.io/amreshh/weather:0.0.1 . Run the container (exposing port 3000) ``` podman run -p 3000:3000 ghcr.io/amreshh/weather:0.0.1 -``` \ No newline at end of file +``` + +# References +- https://openweathermap.org/api \ No newline at end of file diff --git a/images/weather_app.png b/images/weather_app.png new file mode 100644 index 0000000..91a21b0 Binary files /dev/null and b/images/weather_app.png differ diff --git a/package-lock.json b/package-lock.json index 121a195..ec2d3fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "Weather_Nodejs", + "name": "WeatherApp", "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "Weather_Nodejs", + "name": "WeatherApp", "version": "1.0.0", "license": "ISC", "dependencies": { diff --git a/package.json b/package.json index 8e05775..ef56cd1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "Weather_Nodejs", + "name": "WeatherApp", "version": "1.0.0", "description": "", "main": "index.js",