Skip to content

Health Care App to maintain the health record of every patient.

Notifications You must be signed in to change notification settings

swaaz/Healthque

Repository files navigation

About πŸ“Œ

An Electronic Health Record is collection of various medical records during one’s lifespan. These life time records need to be maintained with some standards else it would be very difficult to bring together the records from different hospitals or health care centres together. The main purpose of this project is to provide people with the ease to access their health record anywhere anytime at any hospital or health centre so that the doctor can have the complete history and give proper medication or treatment required faster. Hence, the need for interoperability. This will interconnect all health care centres across the country and with the appropriate authorisation the health records could be accessed.

What's in here? πŸ€”

  • React Native :atom:
  • Redux πŸ—„οΈ
  • Firebase πŸ—ΊοΈ

Mockups πŸ–ŒοΈ

How to Build the App πŸ“±

Fork the repo 🍴

Clone the repo πŸ”»

git clone <url>
  • example : git clone https://github.com/swaaz/Mapme.git

Add API key before building πŸ”‘

Go to firebase console and create a project, add web as project and copy the API key and paste it inside the ~Healthque/firebase.js after creating.

// firebase.js

import * as firebase from 'firebase'

import "firebase/auth";
//import "firebase/database";
import "firebase/firestore";
//import "firebase/functions";
import "firebase/storage";


const firebaseConfig = {
    apiKey: "",
    authDomain: "",
    projectId: "",
    storageBucket: "",
    messagingSenderId: "",
    appId: "",
    measurementId: ""
};

let app;

if(firebase.apps.length === 0){
    app = firebase.initializeApp(firebaseConfig);
}
else{
    app = firebase.app();
}

const auth = firebase.auth();
const db = app.firestore();
const storage = app.storage();

export { auth, db, storage };

Install Dependencies βš›οΈ

expo install
or 
npm install

Now you're good to go! πŸ”₯

expo build

Resources πŸ“š