This is a simple Flask web application that corrects german sentences grammatically. It can be used for improving speaking skills. To run the web app locally on your machine:
- Python 3.8 or higher installed
-
Clone the Project
Clone this repository to your local machine:
git clone <repository-url> cd <project-directory>
-
Create a Virtual Environment
Inside the project directory, create a Python virtual environment to isolate the project dependencies:
python -m venv .venv
-
Activate the Virtual Environment
On macOS and Linux:
source .venv/bin/activate
On Windows:
.venv\Scripts\activate
-
Install Dependencies
Install the necessary Python libraries from the
requirements.txt
file:pip install -r requirements.txt
-
Run the Application
Start the web application locally by running:
python main.py
-
Access the Web App
Open your browser and visit http://localhost:8080/ to see the application running.
- Make sure your virtual environment is activated before running the app or installing additional libraries.
- You can deactivate the virtual environment anytime by running:
deactivate