The app targets flask 2.3.3
link to web app here translateNinja. It can be installed as a progressive web app (PWA)
To use the app, you would need Flask installed. All required installations are in the requirements.txt
- Clone the Repository
git clone https://github.com/Lonercode/translateNinja.git
cd translateNinja- Set up a Virtual environment
windows
python -m venv venvmacos
python3 -m venv venv- Activate the Environment
windows
venv\Scripts\activatemacos
source venv/bin/activate- Install dependencies
In the root of the project, run the follwing code:
pip install -r requirements.txt- Start the Application
Run the translate.py app.
The app will run on
http://localhost:5000