A React + Vite and Django Weather App
-
Current Day Weather Data
- Temperature
- "Feels Like" Temperature
- Humidity
- Description (Air, Cloud condition etc.)
-
5-Day Weather Data
- Temperature
- Humidity
- Description
-
Clone the repository:
git clone https://github.com/daimbk/skystate.git cd skystate
-
Create Virtual Environment
cd backend python -m venv venv source venv/bin/activate
Install Packages
pip install -r requirements.txt
Migrate Database & Run Server
python manage.py migrate python manage.py runserver
-
cd frontend npm install npm run dev