Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinjanbarluado2/laravel-weather-app
A Laravel 10-based weather application system delivering accurate forecasts, real-time updates, and customizable settings for a seamless user experience, powered by the OpenWeatherMap API.
https://github.com/kevinjanbarluado2/laravel-weather-app
bootstrap5 composer laravel openweathermap openweathermap-api
Last synced: 25 days ago
JSON representation
A Laravel 10-based weather application system delivering accurate forecasts, real-time updates, and customizable settings for a seamless user experience, powered by the OpenWeatherMap API.
- Host: GitHub
- URL: https://github.com/kevinjanbarluado2/laravel-weather-app
- Owner: kevinjanbarluado2
- Created: 2024-05-14T07:27:26.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-17T05:26:08.000Z (6 months ago)
- Last Synced: 2024-09-30T22:40:57.911Z (about 1 month ago)
- Topics: bootstrap5, composer, laravel, openweathermap, openweathermap-api
- Language: PHP
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Weather App
- A Laravel 10-based weather application system delivering accurate forecasts, real-time updates, and customizable settings for a seamless user experience, powered by the OpenWeatherMap API.## Requirements
- PHP ^8.1
- OpenWeatherAPI key## Installation
1. Clone the repository:
```bash
git clone https://github.com/kevinjanbarluado2/laravel-weather-app.git
cd laravel-weather-app
```2. Install dependencies:
```bash
composer install
```3. Copy the `.env.sample` file to `.env`:
```bash
cp .env.sample .env
```4. Generate the application key:
```bash
php artisan key:generate
```5. Add your OpenWeatherMap API key to the `.env` file:
```
WEATHER_API_KEY=your_openweathermap_api_key
```6. Serve the application:
```bash
php artisan serve
```