From 238f4617801f387bafa464cf6cb9a166c456c6f6 Mon Sep 17 00:00:00 2001
From: Artem Baranovskyi <artem.baranovsky1980@gmail.com>
Date: Wed, 7 Aug 2024 22:47:22 +0300
Subject: [PATCH] Small docs update.

---
 readme.md | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/readme.md b/readme.md
index 46c67b3..91da0ae 100755
--- a/readme.md
+++ b/readme.md
@@ -1,19 +1,24 @@
 ### How to wrap up and run Moodle Server:
 
-Run these commands at CLI to use ASYST with universal BERT model based on German language.
+To use ASYST with universal BERT model based on German language just Run these commands at CLI.
 
 ~~~bash
-docker-compose up -d --build
-/bin/bash install_moodle.sh
+docker-compose up -d --build && ./install_moodle.sh
 ~~~
 
+Infrastructure rolls up a Brand New Moodle instance. If you have  
+
 Use these creds to access Moodle admin page
 admin:rootpassword
 
-Database connection URL: jdbc:mariadb://localhost:3306/moodle
+## Development tips
+To facilitate DB monitoring at IDE set such a Database connection URL: 
+~~~bash
+jdbc:mariadb://localhost:3306/moodle
+~~~
 
-It is suggested to use our moodle plugin to communicate with ASYST script using such a
-route http://127.0.0.1:5000
+It is suggested to use our moodle plugin to communicate with Flask-based ASYST script using such a
+route http://127.0.0.1:5000/api/autograde
 
 Now the preinstalled MOODLE LMS is available at https://www.moodle.loc
 
-- 
GitLab