- Laravel 10.x ve Weather API kullanılarak geliştirilmiştir.
- Weather API için OpenWeather kullanılmıştır.
git clone https://github.com/erhanurgun/LARA19-weather-api-ile-hava-durumu.git lara-weather-app
composer install
cp .env.example .env
php artisan key:generate
APP_NAME="Weather API ile Hava Durumu"
APP_URL=http://localhost:8000
APP_TIMEZONE=Europe/Istanbul
APP_LOCALE=tr
APP_FAKER_LOCALE=tr_TR
WEATHER_API_KEY=
WEATHER_API_URL=https://api.openweathermap.org/data/2.5
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
php artisan migrate
php artisan serve
# veya
php artisan serve --host=laravel.test --port=8000
# veya
php -S localhost:8000 -t public
- NOT: Eğer
laravel.test
şeklinde erişmek isterseniz; -
- Windows için
C:\Windows\System32\drivers\etc\hosts
dosyasına127.0.0.1 laravel.test
satırını ekleyin.
- Windows için
-
- Linux için
/etc/hosts
dosyasına127.0.0.1 laravel.test
satırını ekleyin.
- Linux için
-
- Mac için
/private/etc/hosts
dosyasına127.0.0.1 laravel.test
satırını ekleyin.
- Mac için
http://localhost:8000
# veya
http://laravel.test
- Ülke için:
http://laravel.test/weather?lang=en&cityOrCountry=Turkey
- Şehir için:
http://laravel.test/weather?lang=tr&cityOrCountry=Ağrı
- NOT:
lang
parametresi opsiyoneldir. Varsayılan değeritr
dir.
Daha fazla bilgi için bu adresleri ziyaret edebilirsiniz:
forum
| forum.erho.devblog
| erho.devblog
| orizora.com