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/
│
├── config.sample.php
├── index.html
├── database.sql
├── src/
│ ├── api.php
│ └── fetch_weather.php
├── css/
│ └── styles.css
├── js/
│ └── script.js
├── README.md
└── .gitignore