https://github.com/doobie-droid/hospital-backend
An appointment booking API system for patients. [Backend Technical Assessment for Clafiya]
https://github.com/doobie-droid/hospital-backend
authentication flutterwave flutterwave-api rest-api
Last synced: 8 months ago
JSON representation
An appointment booking API system for patients. [Backend Technical Assessment for Clafiya]
- Host: GitHub
- URL: https://github.com/doobie-droid/hospital-backend
- Owner: doobie-droid
- Created: 2023-03-21T20:53:48.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-02T23:14:59.000Z (about 2 years ago)
- Last Synced: 2025-10-09T09:59:20.178Z (8 months ago)
- Topics: authentication, flutterwave, flutterwave-api, rest-api
- Language: PHP
- Homepage:
- Size: 134 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About Laravel
Laravel was used to build this repo. Google it and see how lovely it is.... It is accessible, powerful, and provides tools required for large, robust applications.
## SETUP PROJECT FOR LOCAL DEVELOPMENT
Make sure you install [docker](https://docs.docker.com/engine/install/ubuntu/) and you can watch the [video](https://www.youtube.com/watch?v=2ezNqqaSjq8&t=488s) so that you install docker properly on your ubuntu wsl. If it crucial you watch and install the right way or your requests would take forever to send
### Premium Partners
After that, run the following commands in this order:
To set up your containers from the docker files/instructions there, run
```bash
$ docker-compose -f docker-compose.yml up -d --build
```
Afterwards run the next line to install any dependencies you may be missing, It is not needed now
but in the future, I could add some packages
```bash
$ docker-compose -f docker-compose.yml exec app composer install --ignore-platform-reqs
```
Lastly, run this to perform your database migrations
```bash
$ docker-compose -f docker-compose.yml exec app php artisan migrate:fresh
```
## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).