Skip to content

Technical Architecture Overview

Akarshi edited this page Apr 6, 2020 · 8 revisions

image

  1. Client
    This is where most of our frontend code is stored this means the user can see and use the client code. The client sends requests to the backend server, usually done as post and get requests.
  2. Server
    Once the request is sent to the backend, if its a post request it passes data given by the user and posts it into the backend which for us was mostly into databases. If the request is a get request it gets the data from the backend and populates the frontend with it.
  3. Web Login
  4. Database
    We use SQLite and sequelize in order to populate our data in the database.

Clone this wiki locally