A weather application that shows weather conditions and forecasts.
You will need to have node and yarn installed on your machine. You will also need an API key from Dark Sky API and LocationIQ in order for API calls to work.
Make sure you are inside the project's directory, outside of the client folder.
Inside the config folder, add your api keys to default.json.
{
"WEATHER_API_KEY": "DARK SKY API KEY HERE",
"LOCATION_API_KEY": "LOCATIONIQ API KEY HERE"
}
# Install server dependencies
yarn install
# Install client dependencies
yarn install-client
# Run server and client
yarn dev
- React - Front end
- Express - Web framework
- Dark Sky API - Weather API
- LocationIQ - Location API
Andy Ngo
This project is licensed under the MIT License - see the LICENSE.md file for details