Weatherly is a basic weather app that retrieves local forecast information.
Deployed URL Weatherly
Follow these steps to set up the project on your local machine:
Click on the "Fork" button at the top right of the page to create a copy of the repository in your GitHub account.
git clone https://github.com/admclamb/weatherly.git
cd weatherly
Ensure you have Node.js installed. Then, run the following command to install the necessary packages:
npm install
- Go to the OpenWeather API documentation.
- Sign up or log in to your account.
- Generate an API key.
Create a .env
file in the root directory of the project and add your API key:
VITE_API_SERVER_URL=
VITE_API_KEY=
A base sample of env file is in .env.sample
To start the application, run:
npm run dev
Open your browser and go to http://localhost:5173
to view the app.
- Retrieves local weather forecast information.
- Simple and user-friendly interface.