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.
- React Native
- Redux 🗄️
- Firebase 🗺️
git clone <url>
- example :
git clone https://github.com/swaaz/Mapme.git
Open Google Firebase
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 };
expo install
or
npm install
expo build