Skip to content

Commit

Permalink
add project doc structure b00tc4mp#230
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBM84 committed Nov 14, 2024
1 parent 0d5aeb1 commit 3ba1941
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 0 deletions.
Empty file.
Empty file.
Empty file.
Empty file.
89 changes: 89 additions & 0 deletions staff/carlos-bock/project/doc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# [iMoveMe / yoMeMuevo]

## Intro

[...]

#### image goes here


## Functional


### Use Cases

User (for example)
- create posts
- view posts
- toggole like posts
- add commment
- view comments
- remove comments
- add review
- edit review
- remove review
- report/flag content
- add wiki

Admin
- view reports
- delete user
- delete post
- remove comment
- [...]

### UXUI Design

[Figma] (figma URL)

## Techinal Aspects

### Blocks

- App (client-side application)
- API (server-side application)
- DB (the database)

### Packages

- doc ( documentation)
- app (client-side application)
- api (server-side API)
- dat (data model and driver)
- com (common validation, utils, ...)

### Data Model

User
- id (UUID)
- name (string)
- email (string)
- username (string)
- password (string)

Post
- id (UUID)
- author (User.id)
- image (string)
- text (string)
- date (Date)
- likes ([User.id])
- comments ([{
- id (UUID)
- author (User.id)
- text (string)
- date (Date) }])

### Techs

- HTML/CSS/JS (...)
- React (...)
- Node (...)
- Express (...)
- Mongo (...)
- Mocha & Chai (...)
- [...]

### Test Coverage

- Mocha & Chai

0 comments on commit 3ba1941

Please sign in to comment.