ccsf-japanese / japanize

1 stars 0 forks source link

Group project - Japanize

Japanize is a learning Japanese app.

User Stories

The following required functionality is completed:

The following optional features are implemented:

Mockups

API

Resources

Video Walkthrough

Here's a walkthrough of implemented user stories:

Data schema

The data schema is documented in the API in every end-point. Basically we have:

[
  {
    "id": 1,
    "name": "Alejandro",
    "bio": "CCSF student",
    "email": "asanc142@mail.ccsf.edu",
    "score": 1000
  }
]
[
  {
    "id": 1,
    "name": "Kanji 1",
    "description": "Practice Kanji first character",
    "character": "仮",
    "score": 5
  }
]
[
  {
    "id": 1,
    "name": "Word 1",
    "description": "Practice Kanji first character",
    "meaning_english": "Hello",
    "meaning_hiragana": "仮",
    "meaning_romaji": "仮",
    "score": 5
  }
]
[
  {
    "level": 1,
    "published_at": "2015-08-05T08:40:51.620Z",
    "activities": [
      {
        "type": "Kanji",
        "id": 1
      }
    ]
  }
]