Micah456 / MyRoutine

Demo Organisational App in JS and HTML
Apache License 2.0
0 stars 0 forks source link

MyRoutine

Demo Organisational App in JS and HTML

Features

Additional Potential Features

Structure and Technology

Webpages

Data Structures

Note that the names used are NOT final

Database

User:

  • ID
  • Name
  • Stars

Routine:

Step:

Python Dicts

User:

Routine:

Step:

JSON/JS Object

User:

Routine:

Step:

Example JSON

{ "User": { "ID" : 0, "Name" : "Micah", "Stars" : 5, "Routines" : [ { "ID" : 1, "Name" : "Routine1", "Steps" : [ { "ID" : 1, "Order" : 0 "Name" : "Step 1", "Time Alloted" : 10 }, { "ID" : 2, "Order": 1 "Name" : "Step 2", "Time Alloted" : 30 } ] } ] } }