Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 914 Bytes

README.md

File metadata and controls

43 lines (36 loc) · 914 Bytes

CloudWeathers

CloudWeathers is a basic weather forecast app that provides users with weather information for various locations. The app aims to give users quick and easy access to current weather conditions and forecasts.

Screenshot 2023-07-15 185753

Live Demo: https://youtu.be/TlxnYcFuMH0

Built with

  • Python
  • Django Framework
  • Htmx
  • Bootstrap5

Installation & Setup

  • Install virtual env
python -m pip install --user virtualenv
python -m venv venv
  • Activate virtual env
.\venv\Scripts\activate
  • Install packages
pip install -r requirements.txt
  • Database migrations
python manage.py makemigrations
python manage.py migrate
  • Run application
python manage.py runserver
  • Hit url in browser
http://127.0.0.1:8000/