https://github.com/nahumsa/hospital
https://github.com/nahumsa/hospital
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nahumsa/hospital
- Owner: nahumsa
- Created: 2020-12-10T17:24:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-21T20:56:43.000Z (over 4 years ago)
- Last Synced: 2025-02-16T10:13:45.019Z (4 months ago)
- Language: Go
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hospital Management
[](https://circleci.com/gh/nahumsa/Hospital)
-----------------------------
## Introduction of the project
The problem that this app is going to solve is to manage the rooms with sick patients in a hospital where the doctors are logged in a service which they fill out a form giving the number of the room and the number of the case. The interface will show all rooms and mark the rooms with patients with red.
Designing this app I found out it would work better if it has a login, thus I choose a NoSQL database since it is scalable and I can create the structure of the database how I please, I chose [MongoDB](https://www.mongodb.com/) because it is an open-source project and it has been growing in popularity because it is used in huge companies such as EA and Google.
After this, I need a structure to fill out a form and assign it to a room of the patient, where the form will be filled by the login doctor, and added to a new database collection with the desired structure.
This will complete the backend of the project, to the frontend I will use CSS in order to make the application responsive and prettier.
## Running the project
In order to run the project you should have both [docker](https://docs.docker.com/engine/install/) and [docker-compose](https://docs.docker.com/compose/install/) installed into your machine, then you simply just need to run the following command to start the application into the "http://localhost:8080/":
```
docker-compose up
```In order to terminate the application you just need to run:
```
docker-compose down
```