Code Monkey home page Code Monkey logo

eldycare's Introduction

ELDYCARE

EldyCare is a connected application that let relative always be connected to their elder and old parents in case of a medical urgency.

File structure

We will follow this file structure :

ELDYCARE
|
|-Backend
|-Mobile
  |
  |- SmartPhone
  |- SmartWatch

AWS Configuration

To configure AWS for the project run:

aws configure

Also to configure kubectl to use the EKS cluster run :

aws eks --region us-east-1 update-kubeconfig --name eldycare-cluster

And to list services, run:

kubectl get services

For logs, run:

kubectl logs -n default -l app=<service-name>

eldycare's People

Contributors

schrodingdong avatar yassineouhadi avatar

Watchers

 avatar

eldycare's Issues

Add location for the reminderModels in the front and backend

Its a field we will need to provide it in the Calendar event creation function

fun writeToCalendar(reminderCalendarEventModel: ReminderCalendarEventModel){
    val values = ContentValues().apply {
        put(CalendarContract.Events.TITLE, reminderCalendarEventModel.title)
        put(CalendarContract.Events.DESCRIPTION, reminderCalendarEventModel.description)
        put(CalendarContract.Events.DTSTART, reminderCalendarEventModel.dtstart)
        put(CalendarContract.Events.DTEND, reminderCalendarEventModel.dtend)
        put(CalendarContract.Events.EVENT_LOCATION, reminderCalendarEventModel.eventLocation)
        put(CalendarContract.Events.CALENDAR_ID, reminderCalendarEventModel.calendarId)
        put(CalendarContract.Events.EVENT_TIMEZONE, reminderCalendarEventModel.eventTimezone)
    }
}

Persist credentials

Make the login credential persistent to avoid re login each time we enter our app.
We should also spécify the duration of the JWT token

hints :

  • Verify JWT validity, if its not valid prompt the login screen

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.