diff --git a/README.md b/README.md
index 46073a4a2e12a1cf91544f1f3d92222a121feb16..c0d83f120dac1a78e810c1af0d093c0c0d238837 100644
--- a/README.md
+++ b/README.md
@@ -11,3 +11,20 @@ to see what systems and software are available.
 If you want to contribute or learn about the structure of our project, please
 read our
 [wiki](https://gitlab.jsc.fz-juelich.de/CoE-RAISE/FZJ/lamec-oa/-/wikis/LAMEC-Project-Overview).
+
+## Build and Run
+
+To build LAMEC, run:
+
+```
+python3 lamec.py build
+```
+
+This command creates `form_schema.json` that is used for input control
+for the front-end. 
+
+You can test LAMEC locally using the built-in PHP web server:
+
+```
+php -S localhost:<port>
+```
diff --git a/examples/clang_payload.json b/examples/clang_payload.json
deleted file mode 100644
index cfd60ff8d82b968ac35af1ae83ae7953c1512c62..0000000000000000000000000000000000000000
--- a/examples/clang_payload.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-    "system": "DEEP",
-    "software": "clang",
-    "c_source_file": "main.c",
-    "c_output_file": "main",
-    "partition": "dp-esb"
-}
diff --git a/scripts/DEEP/clang/jobscript.sh b/scripts/DEEP/clang/jobscript.sh
deleted file mode 100644
index a4b8c7910c47a1f14ec43684268dce9bd269fd14..0000000000000000000000000000000000000000
--- a/scripts/DEEP/clang/jobscript.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/bin/env bash
-#SBATCH --partition=%partition%
-
-gcc %c_source_file% -o %c_output_file%
-
-srun %c_output_file%
diff --git a/scripts/DEEP/clang/lamec.json b/scripts/DEEP/clang/lamec.json
deleted file mode 100644
index 599040d7af2af26f3e8a4959c979d478e09c64e4..0000000000000000000000000000000000000000
--- a/scripts/DEEP/clang/lamec.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
-    "template": "jobscript.sh"
-}
diff --git a/scripts/info.json b/scripts/info.json
index aff591d75efa100f03c740ad0be21080a06c3fdf..245322bf71c3848fd8a941ff99f0ac14d5bd257a 100644
--- a/scripts/info.json
+++ b/scripts/info.json
@@ -25,14 +25,6 @@
             "desc": "Specify the account for your job.",
             "default": "Account"
         },
-        "c_source_file": {
-            "type": "string",
-            "desc": "Specify the name of your C source file."
-        },
-        "c_output_file": {
-            "type": "string",
-            "desc": "Specify the name of your C output file."
-        },
         "executable": {
             "type": "string",
             "desc": "Specify an executable for your job.",