simple weather app
v.0.0.1
PHP、JQuery、Ajax、Bootstrap、CSS、およびMySQLを使用してAPIから天気情報を取得して表示する気象アプリケーション。

リポジトリをクローンします:
git clone https://github.com/your-username/simple-weather-app.git
cd simple-weather-appデータベースを設定します:
weather_appという名前のデータベースを作成します。database/database.sql )をインポートします。 mysql -u yourusername -p weather_app < database.sqlアプリケーションを構成します:
config.sample.phpをconfig.phpにコピーします: cp config.sample.php config.phpconfig.phpを開き、データベース構成とAPIのキーの詳細を更新します。アプリケーションを実行します:
php -S localhost:8000アプリケーションへのアクセス:
http://localhost:8000に移動します。これは、Simple-Weather-Appアプリケーションの基本ファイル構造です。
simple-weather-app/
│
├── config.sample.php
├── index.html
├── database.sql
├── src/
│ ├── api.php
│ └── fetch_weather.php
├── css/
│ └── styles.css
├── js/
│ └── script.js
├── README.md
└── .gitignore