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.

Stars
0
Committers
2

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:

    git clone https://github.com/kevinjanbarluado2/laravel-weather-app.git
    cd laravel-weather-app
    
  2. Install dependencies:

    composer install
    
  3. Copy the .env.sample file to .env:

    cp .env.sample .env
    
  4. Generate the application key:

    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:

    php artisan serve