-
Notifications
You must be signed in to change notification settings - Fork 4
Technical Architecture Overview
Akarshi edited this page Apr 6, 2020
·
8 revisions

- 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. - 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. - Web Login
- Database
We use SQLite and sequelize in order to populate our data in the database.