diff --git a/README.md b/README.md index 043823f..cfb4b36 100644 --- a/README.md +++ b/README.md @@ -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 + diff --git a/school.db b/school.db new file mode 100644 index 0000000..27dc14d Binary files /dev/null and b/school.db differ