From 199e2ceb8f834171d73622f44ba88b12bbce6f8a Mon Sep 17 00:00:00 2001
From: Philip Molares <philip.molares@udo.edu>
Date: Sun, 22 Dec 2019 21:56:59 +0100
Subject: [PATCH] added README

---
 README.md | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)
 create mode 100644 README.md

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..7ece1ac
--- /dev/null
+++ b/README.md
@@ -0,0 +1,38 @@
+# Infoscreen
+
+## Test
+
+This Website can be run locally for testing purposes with `python3 -m http.server` or any other HTTP Server
+
+## Adding Ads
+
+If you wish to add an ad to the infoscreen simply place an image in `panels/werbung/img` and change the `down` section in `config/layouts/default.json` to something like this
+
+```
+"down": {
+    "type": "cycler",
+    "duration": 5,
+    "panels": [
+        {
+            "type": "panel",
+            "name": "mensaPlan"
+        },{
+            "type": "panel",
+            "name": "werbung",
+            "config": {
+                "files": [
+                    {
+                        "filename": "IMAGENAME.png",
+                        "startdate": "NEVER",
+                        "enddate": "NEVER"
+                    }
+                ]
+            }
+        }
+    ]
+}
+
+```
+
+start- and enddate should just be NEVER to activate this immediatly
+
-- 
GitLab