Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.1 KB

README.md

File metadata and controls

45 lines (35 loc) · 1.1 KB

Booker

A Bookmark Manager App

Dependencies

  • MongoDB : As data storage
  • GraphQL
  • Docker : To build and run the deployment images
  • FE: ReactJs, Ant Design

Screenshots

Some screenshots of the application. Login Page Login page Signup Page Signup page Create Deployment Part-1 Home Page Home Create Folder URL View All Links Details Page Bookmark Url

Database Schema

users {
    _id: ObjectID,
    email: string,
    password: string,
}

links {
    _id: ObjectId,
    name: string,
    user_id: string,
    links: string[]
}