https://github.com/arkhn/pyrog
Standardization tool for healthcare data
https://github.com/arkhn/pyrog
fhir interoperability react redux typescript
Last synced: 3 months ago
JSON representation
Standardization tool for healthcare data
- Host: GitHub
- URL: https://github.com/arkhn/pyrog
- Owner: arkhn
- License: gpl-3.0
- Archived: true
- Created: 2018-10-23T16:17:12.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T12:00:27.000Z (almost 3 years ago)
- Last Synced: 2024-11-24T10:34:27.454Z (11 months ago)
- Topics: fhir, interoperability, react, redux, typescript
- Language: TypeScript
- Homepage:
- Size: 16.2 MB
- Stars: 54
- Watchers: 10
- Forks: 6
- Open Issues: 85
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pyrog
[](https://arkhn.org/)
[](https://github.com/arkhn/pyrog/blob/main/LICENSE)

[](https://codecov.io/gh/arkhn/pyrog/branch/main)Pyrog is a community web app which helps you standardize healthcare data to FHIR.
Using Pyrog, you can manage any data sources including medical softwares, to extract, transform and load this data in a unified standard database in [FHIR](https://www.hl7.org/fhir/). Pyrog is a user-friendly tool which makes your data processing easier and faster.
**Want to see what our project looks like? [Get in touch with us for a demo!](https://arkhn.org/#contact)**
## Installation
This project comprises a `server` built with Prisma (GraphQL), a `client` which consists of a React application. Installation instructions can be found in the `README.md` in `./client` and `./server`.
_Note: Pyrog is a very modular platform, you will benefit from using our dedicated modules for [data retrieval (Pagai)](https://github.com/arkhn/pagai), [data transformation](https://github.com/arkhn/fhir-river) and more on [our GitHub page](https://github.com/arkhn)_
## Start contributing
We have reported several issues with the label `Good first issue` which can be a good way to start! You can also join our [Slack](https://join.slack.com/t/arkhn/shared_invite/zt-7ccdmm81-il2NOcS7iM6goZ_4OHC2qQ) to contact us if you have trouble or questions :)
If you're enthusiastic about our project, :star: it to show your support! :heart:
## Dumping and restoring
```
pg_dump -h 51.158.119.205 -p 55432 --username=prisma --password -d prisma -n pyrog --format=c -f dump.sql
pg_restore -h localhost -p 5432 --username=prisma -d prisma -F c dump.sql
```