Skip to content

Architecture

blakaut edited this page Aug 24, 2021 · 13 revisions

Glossary

There are a lot of potentially unfamiliar terminology used in this document so it might be helpful to briefly explain some of them.

Django: Django is a Python web application framework that uses traditional server-side scripting. The framework follows Model-view-controller (MVC) design pattern.

Django REST Framework: Django REST Framework is an Django extension with some additional functionality.

Docker: Docker is a tool for bundling applications into images that contains all the libraries and resources that the application needs including a preferred Linux distribution. Dockerfile contains the instructions on how to create an image. These images can be used to created instances called containers that can be started, stopped and removed.

Docker Compose: Docker Compose is a tool for making the management of multiple Docker containers easier. The configuration is stored in a docker-compose.yml file.

PostgreSQL: PostgreSQL is a relational database management system.

Environment

The full environment is set up using Docker Compose and consists of two Docker containers:

  • web contains Django web server (nicknamed WebMark2)
  • db contains PostgreSQL database

On the staging server there is also a third container running Lighttpd to serve static files.

Web server and database models

The web server has been nicknamed WebMark2. Folder /webmark2/ contains project settings and /qleader/ contains the actual application.

WebMark2 uses Django REST framework, which uses a model system to construct the database (PostgreSQL) that the application uses. Custom models of WebMark2 can be found from the folder /qleader/models/, with which the application also uses a bunch of default models offered in Django.

Here is the uml graph of the WebMark2, which corresponds to the database schema (You might need to open the image up in a separate tab to see the small text):

WebMark2_uml

(The instructions on how the image above was generated can be found here)

Repositories

Clone this wiki locally