We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6d79f4 commit 2469a86Copy full SHA for 2469a86
README.md
@@ -22,6 +22,21 @@ How does it work?
22
23
```
24
25
+## Install
26
+
27
+```bash
28
+# Virtuelles Environment mit dem Namen "venv" initialisieren falls noch kein venv-Unterverzeichnis da ist:
29
+python3 -m venv venv
30
31
+# Venv fürs aktuelle Projekt aktivieren
32
+source venv/bin/activate
33
34
+# Requirements installieren
35
+pip3 install -r requirements.txt
36
37
+python3 generateSitzplan.py
38
+```
39
40
## Local development instructions
41
42
It is easier to fill out the seating information if you get "live feedback". That is why you should do the following:
requirements.txt
@@ -0,0 +1,7 @@
1
+certifi==2024.12.14
2
+charset-normalizer==3.4.1
3
+idna==3.10
4
+Jinja2==3.1.5
5
+MarkupSafe==3.0.2
6
+requests==2.32.3
7
+urllib3==2.3.0
0 commit comments