Skip to content

Commit 2469a86

Browse files
committed
Add install instructions and requirements file
1 parent b6d79f4 commit 2469a86

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,21 @@ How does it work?
2222

2323
```
2424

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+
2540
## Local development instructions
2641

2742
It is easier to fill out the seating information if you get "live feedback". That is why you should do the following:

requirements.txt

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)