This is a simple weather web application built with Express and React
Install Node.js v14.x
Clone this repository: git clone https://github.com/keenanjt33/weather-or-not.git
- Note: If you don't have
git
installed, install it by following these instructions
Navigate to the project in your file system: cd weather-or-not
Install dependencies:
npm install && cd client && npm install && cd ..
Set up an AccuWeather developer account then register an app
Create a file called .env
in the project's root directory and add the line:
WEATHER_KEY=<accuweather_app_api_key>
Where <accuweather_app_api_key>
is the API key registered to your AccuWeather
app.
Run the app:
npm run start