Clone the Repository
git clone https://github.com/skulkarni0102/weather_app.git- Navigating to backend
cd backend- Setting virtual environment
python -m venv env
env\Scripts\activate
pip install -r requirements.txt-
Weather API key get the key from -> https://openweathermap.org/
-
Create .env file and paste the key
WEATHER_KEY=Your Key- Running backend
python manage.py runserver- Navigating to frontend
cd frontend- Installing dependencies
npm install- Create you .env file and Paste your URL
REACT_APP_API_URL=Your Backend Url- Running frontend
npm start