{"id":19265827,"url":"https://github.com/mr-mrf-dev/doctors-building","last_synced_at":"2026-02-22T21:45:55.438Z","repository":{"id":167685437,"uuid":"590954068","full_name":"Mr-MRF-Dev/Doctors-Building","owner":"Mr-MRF-Dev","description":"🏥 My Project in FOP (BP) With C Programming Language.","archived":false,"fork":false,"pushed_at":"2025-02-23T18:53:14.000Z","size":726,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-06T21:11:13.785Z","etag":null,"topics":["basic-programming","c","cpp","fundamentals-of-programming","terminal-app"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mr-MRF-Dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-19T15:48:58.000Z","updated_at":"2025-02-23T18:53:18.000Z","dependencies_parsed_at":"2024-04-13T14:59:06.639Z","dependency_job_id":"56a981b2-66d1-4ded-ab87-b99b1254b752","html_url":"https://github.com/Mr-MRF-Dev/Doctors-Building","commit_stats":null,"previous_names":["mr-mrf-dev/doctors-building"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mr-MRF-Dev/Doctors-Building","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FDoctors-Building","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FDoctors-Building/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FDoctors-Building/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FDoctors-Building/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mr-MRF-Dev","download_url":"https://codeload.github.com/Mr-MRF-Dev/Doctors-Building/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-MRF-Dev%2FDoctors-Building/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29728503,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T20:09:16.275Z","status":"ssl_error","status_checked_at":"2026-02-22T20:09:13.750Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["basic-programming","c","cpp","fundamentals-of-programming","terminal-app"],"created_at":"2024-11-09T19:48:54.755Z","updated_at":"2026-02-22T21:45:55.418Z","avatar_url":"https://github.com/Mr-MRF-Dev.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🏥 Doctors' Building\n\n![GitHub repo size](https://img.shields.io/github/repo-size/mr-mrf-dev/Doctors-Building)\n[![CMake on multiple platforms](https://github.com/Mr-MRF-Dev/Doctors-Building/actions/workflows/cmake-multi-platform.yml/badge.svg)](https://github.com/Mr-MRF-Dev/Doctors-Building/actions/workflows/cmake-multi-platform.yml)\n[![GitHub License](https://img.shields.io/github/license/mr-mrf-dev/Doctors-Building)](/LICENSE)\n\na comprehensive healthcare management system with distinct user roles and functionalities for secretaries, doctors, and patients. This system aims to streamline healthcare management by providing tailored functionalities for secretaries, doctors, and patients, ensuring efficient and organized operations.\n\n![Screenshot](/images/screenshot.png)\n\nMy Project in FOP (fundamental of programming) (BP (basic programming)) With C Programming Language.\n\n\u003e I recommend using [Windows Terminal](https://apps.microsoft.com/store/detail/windows-terminal/9N0DX20HK701)\n\u003e for the best experience.\n\n## 📥 Getting Started\n\n1. Clone the Repository\n\n    If you have [Git](https://git-scm.com/) installed, run the following command in your terminal\n\n    ```bash\n    git clone https://github.com/Mr-MRF-Dev/Doctors-Building.git\n    ```\n\n    Alternatively, If You Have [Github CLI](https://cli.github.com/) installed:\n\n    ```bash\n    gh repo clone Mr-MRF-Dev/Doctors-Building\n    ```\n\n2. Navigate to the Project Directory\n\n    ```bash\n    cd ./Doctors-Building/src\n    ```\n\n3. Compile the Code\n\n    Compile the program using a C compiler. For example, using GCC:\n\n    ```bash\n    gcc .\\Main.c -o Doctors-Building\n    ```\n\n4. Run the Program\n\n    ```bash\n    ./Doctors-Building.exe\n    ```\n\n### Compile with CMake\n\nafter cloning the repository, you can compile the project using [CMake](https://cmake.org/download/):\n\n1. Navigate to the Project Directory\n\n    ```bash\n    cd ./Doctors-Building\n    ```\n\n2. Create a build directory\n\n   ```bash\n   mkdir build\n   cd build\n   ```\n\n3. Build the project using the following commands:\n\n    ```bash\n    cmake ..\n    make\n    ```\n\n    Or use [MinGW MakeFiles](https://cmake.org/cmake/help/latest/generator/MinGW%20Makefiles.html) by running: (Windows)\n\n    ```bash\n    cmake .. -G \"MinGW Makefiles\"\n    mingw32-make\n    ```\n\n4. Run Project!\n\n    ```bash\n    ./Doctors-Building.exe\n    ```\n\n## ✨️ Features\n\n- Hash Password: Use a simple hash to handle the password hashing and verification.\n- Login Page: Users can authenticate themselves on the platform.\n- Admin Panel: Gain access to the admin panel to perform administrative tasks.\n- Doctor Account: Doctors can view medical histories and prescribe treatments.\n- Patient Account: Patients can view personal health information, appointment schedules, and test results.\n\n## 📝 Request for Proposal ( [RFP](https://en.wikipedia.org/wiki/Request_for_proposal) )\n\nA simple RFP for this project.\n\n1. Login Page 🔒\n\n   - Sign in\n   - Forgot password\n   - Exit\n\n2. Secretary Account (Admin) 👾\n\n    - Add Doctor\n    - Add Patient\n    - Monthly Schedule\n    - Visits Schedule\n    - Exit\n\n3. Doctor's Account 🧑🏻‍⚕️\n\n    - Determining the shifts\n    - Reserved Visits\n    - Patient Prescription\n    - Rent Payment\n    - Visirs Payment\n    - Exit\n\n4. Patient Account 😷\n\n    - Book an Appointment\n    - Cancel an Appointment\n    - All Appointments\n    - Prescriptions\n    - Exit\n\n## 🤝 Contributing\n\nwe welcome any contributions you may have. If you're interested in helping out, fork the repository\nand create an [Issue](https://github.com/Mr-MRF-Dev/Doctors-Building/issues) and\n[PR](https://github.com/Mr-MRF-Dev/Doctors-Building/pulls).\n\n## 📄 License\n\nThis project is licensed under the MIT License. See the [LICENSE](/LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-mrf-dev%2Fdoctors-building","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmr-mrf-dev%2Fdoctors-building","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-mrf-dev%2Fdoctors-building/lists"}