https://github.com/ohcnetwork/care
Care is a Digital Public Good enabling TeleICU & Decentralised Administration of Healthcare Capacity across States.
https://github.com/ohcnetwork/care
digital-public-goods hacktoberfest healthcare hmis
Last synced: 20 days ago
JSON representation
Care is a Digital Public Good enabling TeleICU & Decentralised Administration of Healthcare Capacity across States.
- Host: GitHub
- URL: https://github.com/ohcnetwork/care
- Owner: ohcnetwork
- License: mit
- Created: 2020-03-17T14:48:11.000Z (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2025-05-14T21:33:22.000Z (20 days ago)
- Last Synced: 2025-05-15T03:07:48.437Z (20 days ago)
- Topics: digital-public-goods, hacktoberfest, healthcare, hmis
- Language: Python
- Homepage: https://careapi.ohc.network/swagger
- Size: 25.2 MB
- Stars: 299
- Watchers: 12
- Forks: 426
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Care Backend
[](https://github.com/ohcnetwork/care/actions/workflows/deployment.yaml)
[](https://opensource.org/licenses/MIT)
[](https://github.com/pydanny/cookiecutter-django/)
[](https://github.com/psf/black)
[](https://slack.ohc.network/)
[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/ohcnetwork/care)This is the backend for care. an open source platform for managing patients, health workers, and hospitals.
## Features
Care backend makes the following features possible:
- Realtime Analytics of Beds, ICUs, Ventilators, Oxygen and other resources in hospitals
- Facility Management with Inventory Monitoring
- Integrated Tele-medicine & Triage
- Patient Management and Consultation History
- Realtime video feed and vitals monitoring of patients
- Clinical Data Visualizations.## Getting Started
### Docs and Guides
You can find the docs at https://care-be-docs.ohc.network
### Staging Deployments
Dev and staging instances for testing are automatically deployed on every commit to the `develop` and `staging` branches.
The staging instances are available at:- https://careapi.ohc.network
- https://careapi-staging.ohc.network### Self hosting
#### Compose
docker compose is the easiest way to get started with care.
put the required environment variables in a `.env` file and run:```bash
make up
```to load seed data for testing run:
```bash
make load-seed-data
```Stops and removes the containers without affecting the volumes:
```bash
make down
```Stops and removes the containers and their volumes:
```bash
make teardown
```#### Docker
Prebuilt docker images for server deployments are available
on [ghcr](https://github.com/ohcnetwork/care/pkgs/container/care)For backup and restore use [this](/docs/databases/backup.rst) documentation.
## Contributing
We welcome contributions from everyone. Please read our [contributing guidelines](./CONTRIBUTING.md) to get started.