diff --git a/README.md b/README.md
index a63d73b1451b83591f7d8e8f9267c5dfa31c005a..67eb3c435f42fca41c3878408d0d482e30b4d3f5 100644
--- a/README.md
+++ b/README.md
@@ -5,6 +5,23 @@ This is Data Catalog for eFlows4HPC project
 Find architecture in [arch](arch/arch.adoc) folder. 
 
 
+## Frontend Server for the Data Catalog
+
+[This](frontend/) part is the frontend for the Data Catalog. It will be the user interface, so that no one is forced to manually do http calls to the api. Since the content is managed by the [api-server}(apiserver/), this can be deployed as a static website, containing only html, css and javascript. To make the different pages more uniform and avoid duplicate code, the static pages will be generated by the [jinja2](https://jinja.palletsprojects.com/en/3.0.x/templates/) template engine.
+
+To compile the static pages to the `./site/` directory (will be created if required), simply run 
+```bash
+pip install -r requirements.txt
+python frontend/createStatic.py
+```
+
+The site can then be deployed to any webserver that is capable of serving files, as no other server functionality is strictly required. However, in a proper deployment, access and certificates should be considered.
+
+For development (and only for development), an easy way to deploay a local server is
+```shell
+python -m http.server <localport> --directory site/
+```
+
 ## API-Server for the Data Catalog
 
 [This](apiserver/) part is the the API-server for the Data Catalog, which will provide the backend functionality.
diff --git a/frontend/createStatic.py b/frontend/createStatic.py
index f997f3a8ac6f756606aec51784522d23b51c4620..0a381a2db9754f4e934b18665139455ce35e5e89 100644
--- a/frontend/createStatic.py
+++ b/frontend/createStatic.py
@@ -2,7 +2,7 @@ from jinja2 import Environment, FileSystemLoader
 import os
 import shutil
 
-def main():
+def render_template_to_site():
     ## copy javascript files to site folder
     src_files = os.listdir('frontend/js')
     dest = 'site/js'
@@ -43,4 +43,4 @@ def main():
             f.write(html[file])
 
 if __name__ == "__main__":
-    main()
\ No newline at end of file
+    render_template_to_site()
\ No newline at end of file