Backend
Project Structure
APPALGO-SOSE24
Backend
│
└── src
|
├── main.py
│
└── requirements.txt
Setup
-
Install Python: go to python.org
-
Navigate to Backend:
cd appalgo-sose24/src
-
Create and Activate a Virtual Environment (Optional but recommended):
python3 -m venv venv
In a Unix-based System run:
source venv/bin/activate
In Windows run:
.venv\Scripts\activate
-
Install the Dependencies:
pip install -r requirements.txt
Test Setup
-
Geh sicher, dass alle Dependencies installiert sind.
-
Install Poetry: https://python-poetry.org/docs/