Skip to content

Latest commit

 

History

History
60 lines (34 loc) · 657 Bytes

readme.md

File metadata and controls

60 lines (34 loc) · 657 Bytes

Book Reader

A full stack app where user can create account, store info about books. features

  • signup, signin
  • create,read,update, delete books
  • list a book as favorite

Technology used

Client side -

  • ReactJS

Database -

  • PostgreSQL

Server side-

  • ExpressJS as HTTP server

Start Backend-

   # go to server folder

   cd server

   # install dependencies

   npm i

   # start database

   docker-compose up

   # run database schema migrations using PGAdmin/CLI

   # start
   npx nodemon

Start Frontend-

    # go to client folder

    cd client

    # install dependencies

    npm i

    # start

    npm start