Group-Project-LitTalk / LitTalk

0 stars 2 forks source link

Original App Design Project - README Template

LitTalk APP

Table of Contents

  1. Overview
  2. Product Spec
  3. Wireframes
  4. Schema

Group Members

  1. Lilian Ofik
  2. Alexander Urena
  3. Micheal Giordano

Overview

Description

This is a social media app that allows for users to posts images, reviews and descriptions of books they have read and view the posts of others. This app allows the user to login and create an account. An API will be called on and used to display book information relevant to the app. Google Books api endpoint - https://www.googleapis.com/books/v1

App Evaluation

[Evaluation of your app across the following attributes]

Product Spec

1. User Stories (Required and Optional)

Required Must-have Stories

Optional Nice-to-have Stories

2. Screen Archetypes

3. Navigation

Tab Navigation (Tab to Screen)

Flow Navigation (Screen to Screen)

Wireframes

[Add picture of your hand sketched wireframes in this section]

[BONUS] Digital Wireframes & Mockups

https://www.figma.com/file/MeFya5Xa4V1yQYh52lLreR/ALM-Book-Project?node-id=14%3A7

[BONUS] Interactive Prototype

https://imgur.com/a/81lnKd5.gif

Schema

Models

User

Property Type Description
Username String Unique id for user login
password String Secure password for user login
Email String Email address to receive correspondence or login

Post

Property Type Description
objectID String Unique id for user post
image File image that user posts
caption String caption by author
likesCount Number number of likes for the post
createdAt DateTime date when post is created
author Pointer to User image author
Comments Property Type Description
objectID String Unique id for user post
author Pointer to User Name of author that posted comment
likesCount Number number of likes for the post
createdAt DateTime date when post is created
caption String comment made by author
Likes Property Type Description
author Pointer to User Name of author that liked post
Follows Property Type Description
author Pointer to User name of user that followed
image File image of user that followed
followersCount Number number of followers for the user

Networking