The Meteo app is designed to provide users with weather information based on their location. It displays weather conditions for various locations and different times of the day, enhancing the user experience with visually appealing color representations.
To start using the Meteo app, follow these steps:
- Node.js installed on your machine
- Expo CLI installed globally (
npm install -g expo-cli
)
- Add the following variables to your
.env
file:BASE_URL
andAPI_KEY
(for OpenWeather).
- Clone the repository to your local machine: git clone https://github.com/Mateo-Abribat/React-Native-Weather-App.git
- Get inside the repository: cd meteo_app
- Install dependencies:
yarn
You can run the app on iOS, Android, or web using Expo.
yarn start
yarn ios
yarn android
yarn web
Ensure that you have an Expo client installed on your iOS or Android device to run the app on mobile. For web, you can view it in your browser.
The app is configured using the Expo framework. Below are some key configurations:
{
"expo": {
"name": "meteo",
"slug": "meteo",
"version": "1.0.0"
// Other configurations...
}
}