shlogg · Early preview
Rene Francisco Cruz González @rene-mayhrem

Building A Weather Dashboard With Docker And AWS S3

Build a weather dashboard app with Docker & AWS S3! Fetch weather data from OpenWeather API, save to S3 bucket. Check out my GitHub repo: https://github.com/Rene-Mayhrem/weather-app

Hey Coders! In this blog post, we'll walk through the contents of a repository that demonstrates how to build a weather dashboard application using Docker and AWS S3. This application fetches weather data from the OpenWeather API and saves it to an AWS S3 bucket. Let's dive into the details!
Here's my github repository, feel free to check it: weather-app
If you want to connect follow me on Github: Rene-Mayhrem

  
  
  Repository Structure

Here's an overview of the repository structure:

weather-dashboard/
├── src/
│   ├── __init__.py
│   └── weather_dashboard.py
├── .env
├── .gitignore
├── D...