updated README.md

This commit is contained in:
2025-01-19 00:41:13 +01:00
parent 594be938e1
commit f8363a2294
2 changed files with 25 additions and 0 deletions

View File

@@ -34,3 +34,28 @@ To get started with **School Planner**, follow these simple installation steps:
1. Clone the repository:
```bash
git clone https://gitea.grevsmuehl.org/jasper/schoolplanner.git
2. Navigate to the frontend directory:
```bash
cd schoolplanner/frontend
3. Install frontend dependencies:
```bash
pip install -r requirements-frontend.txt
4. Run the frontend with Flet:
```bash
flet run --web --host 0.0.0.0 --port 9000 main.py
5. Open a new terminal window, and navigate to the main project directory (schoolplanner):
```bash
cd ..
6. Install backend dependencies:
```bash
pip install -r requirements-backend.txt
7. Run the backend with Uvicorn:
```bash
uvicorn main:app --reload --host 0.0.0.0