From 56f4298f153411974aa711ba0b9ac7c6493f3e09 Mon Sep 17 00:00:00 2001 From: Petr Stefan Date: Thu, 19 Jan 2017 19:15:41 +0100 Subject: [PATCH] Cleanup --- Overall-architecture.md | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 Overall-architecture.md diff --git a/Overall-architecture.md b/Overall-architecture.md deleted file mode 100644 index 98996e3..0000000 --- a/Overall-architecture.md +++ /dev/null @@ -1,9 +0,0 @@ -# Overall Architecture - -## Description - -**ReCodEx** is designed to be very modular and configurable. One such configuration is sketched in the following picture. There are two separate frontend instances with distinct databases sharing common backend part. This configuration may be suitable for MFF UK -- basic programming course and KSP competition. Note, that connections between components are not fully accurate. - -![Overall architecture](https://github.com/ReCodEx/wiki/blob/master/images/Overall_Architecture.png) - -**Web app** is main part of whole project from user point of view. It provides nice user interface and it is the only part, that interacts with outside world directly. **Web API** contains almost all logic of the app including _user management and authentication_, _storing and versioning files_ (with help of **File server**), _counting and assigning points_ to users etc. Advanced users may connect to the API directly or may create custom frontends. **Broker** is essential part of whole architecture. It maintains list of available **Workers**, receives submissions from the **Web API** and routes them further and reports progress of evaluations back to the **Web app**. **Worker** securely runs each received job and evaluate its results. **Monitor** resends evaluation progress messages to the **Web app** in order to be presented to users.