this repo has no description
1# Care Backend
2
3<p align="center">
4 <a href="https://ohc.network">
5 <picture>
6 <source media="(prefers-color-scheme: dark)" srcset="./care/static/images/logos/logo-dark.svg">
7 <img alt="care logo" src="./care/static/images/logos/logo-light.svg" width="300">
8 </picture>
9 </a>
10</p>
11
12[](https://github.com/ohcnetwork/care/actions/workflows/deployment.yaml)
13[](https://opensource.org/licenses/MIT)
14[](https://github.com/pydanny/cookiecutter-django/)
15[](https://github.com/psf/black)
16[](https://slack.ohc.network/)
17[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/ohcnetwork/care)
18
19This is the backend for care. an open source platform for managing patients, health workers, and hospitals.
20
21## Features
22
23Care backend makes the following features possible:
24
25- Realtime Analytics of Beds, ICUs, Ventilators, Oxygen and other resources in hospitals
26- Facility Management with Inventory Monitoring
27- Integrated Tele-medicine & Triage
28- Patient Management and Consultation History
29- Realtime video feed and vitals monitoring of patients
30- Clinical Data Visualizations.
31
32## Getting Started
33
34### Docs and Guides
35
36You can find the docs at https://care-be-docs.ohc.network
37
38### Staging Deployments
39
40Dev and staging instances for testing are automatically deployed on every commit to the `develop` and `staging` branches.
41The staging instances are available at:
42
43- https://careapi.ohc.network
44- https://careapi-staging.ohc.network
45
46### Self hosting
47
48#### Compose
49
50docker compose is the easiest way to get started with care.
51put the required environment variables in a `.env` file and run:
52
53```bash
54make up
55```
56
57to load fixtures for testing run:
58
59```bash
60make load-fixtures
61```
62
63Stops and removes the containers without affecting the volumes:
64
65```bash
66make down
67```
68
69Stops and removes the containers and their volumes:
70
71```bash
72make teardown
73```
74
75#### Docker
76
77Prebuilt docker images for server deployments are available
78on [ghcr](https://github.com/ohcnetwork/care/pkgs/container/care)
79
80For backup and restore use [this](/docs/setup/database-backup.rst) documentation.
81
82## Contributing
83
84We welcome contributions from everyone. Please read our [contributing guidelines](./CONTRIBUTING.md) to get started.