To run this WeatherApp project, you'll need to start both the Django backend and React frontend separately.
1. Activate the virtual environment:
.\venv\Scripts\activate2. Start the Django development server:
python manage.py runserverThis will start the backend at:
http://localhost:80001. Navigate to the frontend directory:
cd frontend2. Install dependencies (if not already done):
npm install3. Start the React development server:
npm startThis will start the frontend at:
http://localhost:3000✅ Finally, You can use the UI from the frontend at http://localhost:3000 to check the weather.