https://github.com/edcsu/uganda-covid-19-data-api
A Restful API showing the covid19 data fron Uganda provided by the Ministry of Uganda
https://github.com/edcsu/uganda-covid-19-data-api
Last synced: 11 months ago
JSON representation
A Restful API showing the covid19 data fron Uganda provided by the Ministry of Uganda
- Host: GitHub
- URL: https://github.com/edcsu/uganda-covid-19-data-api
- Owner: edcsu
- License: apache-2.0
- Created: 2021-01-10T16:01:58.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-11T15:35:52.000Z (over 5 years ago)
- Last Synced: 2025-07-20T15:38:20.028Z (about 1 year ago)
- Language: PHP
- Size: 188 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# api-project
This a restful api using larevel php framework.
## Requirements
*[Apache](https://httpd.apache.org/download.cgi)
*[PHP](https://windows.php.net/download)
*[MYSQL community edition](https://dev.mysql.com/downloads)
*[Composer(optional)](https://getcomposer.org/download)
*Rest API client tool (optional) [Insomnia Core](https://insomnia.rest/download) or [Postman](https://www.postman.com/downloads)
> An all in one installation with an interface to configure easily Apache, PHP an MYSQL is recommended.
> Use [XAMMP](https://www.apachefriends.org/index) which is a completely free, easy to install Apache distribution containing MariaDB PHP, and Perl.
> The XAMPP open source package has been set up to be incredibly easy to install and to use.
### Compiles and hot-reloads for development
```php
php artisan serve
```
### Make migrations
```php
php artisan migrate
```
### Add an Api controller
```php
php artisan make:controller *ApiControllername*
```