{"id":22059794,"url":"https://github.com/armandfs/e-medib-backend","last_synced_at":"2026-05-11T05:56:21.727Z","repository":{"id":243531911,"uuid":"811792749","full_name":"ArmandFS/e-medib-backend","owner":"ArmandFS","description":"Final Project Backend Repository using Laravel","archived":false,"fork":false,"pushed_at":"2024-09-12T14:46:01.000Z","size":166,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-28T23:12:13.993Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ArmandFS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-06-07T10:06:22.000Z","updated_at":"2024-09-12T14:46:47.000Z","dependencies_parsed_at":"2024-06-28T06:24:37.147Z","dependency_job_id":"703b2dbb-5f81-468d-a4b1-b6b4c0373a7a","html_url":"https://github.com/ArmandFS/e-medib-backend","commit_stats":null,"previous_names":["armandfs/e-medib-backend"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArmandFS%2Fe-medib-backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArmandFS%2Fe-medib-backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArmandFS%2Fe-medib-backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArmandFS%2Fe-medib-backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArmandFS","download_url":"https://codeload.github.com/ArmandFS/e-medib-backend/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245136397,"owners_count":20566588,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-30T17:32:38.447Z","updated_at":"2026-05-11T05:56:21.682Z","avatar_url":"https://github.com/ArmandFS.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://laravel.com\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg\" width=\"400\" alt=\"Laravel Logo\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/laravel/framework/actions\"\u003e\u003cimg src=\"https://github.com/laravel/framework/workflows/tests/badge.svg\" alt=\"Build Status\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/laravel/framework\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/laravel/framework\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/laravel/framework\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\n\n---\n\n# E-Medib Backend\n\n\"E-Medib\" is an Android application designed to monitor, document, and assess the condition of Diabetes Mellitus type 1 and 2 patients. The backend backbone for this application is built using Laravel, a powerful MVC PHP framework. This backend handles user authentication, data management, and integration with the Diabetes Self-Management Questionnaire (DSMQ).\n\n\n## Features\n\n- User Authentication (Registration, Login, Logout)\n- BMI and BMR Calculation\n- Patient Data Management\n- Integration with DSMQ\n- RESTful API\n\n## Installation\n\nTo get started with the E-Medib backend, follow these steps:\n\n1. **Clone the repository:**\n\n    ```bash\n    git clone https://github.com/ArmandFS/e-medib-backend.git\n    cd e-medib-backend\n    ```\n\n2. **Install dependencies:**\n\n    ```bash\n    composer install\n    ```\n\n3. **Set up the environment file:**\n\n    ```bash\n    cp .env.example .env\n    ```\n\n4. **Generate application key:**\n\n    ```bash\n    php artisan key:generate\n    ```\n\n5. **Configure your database in `.env` file:**\n\n    ```env\n    DB_CONNECTION=mysql\n    DB_HOST=127.0.0.1\n    DB_PORT=3306\n    DB_DATABASE=your_database_name\n    DB_USERNAME=your_database_username\n    DB_PASSWORD=your_database_password\n    ```\n\n6. **Run the database migrations:**\n\n    ```bash\n    php artisan migrate\n    ```\n\n7. **Start the development server:**\n\n    ```bash\n    php artisan serve\n    ```\n\n\n\n## API Endpoints\n\nHere are some of the key API endpoints available in this project:\n\n### Authentication\n\n- **Register:** `POST /api/register`\n- **Login:** `POST /api/login`\n- **Logout:** `POST /api/logout`\n\n### User Profile\n\n- **Get User Data:** `GET /api/accountData`\n- **Update Profile:** `PUT /api/updateProfile`\n\n### BMI \u0026 BMR Calculation\n\n- **BMI Calculation:** Automatically calculated during registration and profile update.\n- **BMR Calculation:** Automatically calculated during registration and profile update.\n\n### DSMQ Integration\n\n- **DSMQ Assessment:** Endpoints to handle DSMQ data integration and management.\n\n## Contributing\n\nContributions are welcome! Please follow these steps to contribute:\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-branch`).\n3. Commit your changes (`git commit -m 'Add new feature'`).\n4. Push to the branch (`git push origin feature-branch`).\n5. Open a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farmandfs%2Fe-medib-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farmandfs%2Fe-medib-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farmandfs%2Fe-medib-backend/lists"}