The Weather App is a simple web application that displays weather information using the OpenWeather API. This app is built with Flask and requires Python version >= 3.5.
To get started with the Weather App, follow these simple steps:
-
Navigate to the project directory:
cd server
-
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate
-
Install the required dependencies using
pip
:pip install -r requirements.txt
-
Run the Flask application:
flask run
-
Open your web browser and visit http://127.0.0.1:5000/ to access the Weather App.
-
Navigate to the project directory:
cd client
-
Install the required dependencies using
npm
:npm install
-
Run the app in the development mode.
npm start
-
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes. You may also see any lint errors in the console.