Basic vocabulary trainer mobile web app built in Flask runs on SQLite database Demo: http://vocapp.pythonanywhere.com/
- Download or clone repository
- Create a virtual enviroment for the app (Open terminal in the project folder and us a comand: virtualenv venv)
- Activate the venv with command: . venv/bin/activate
- Install all required packages with: pip install -r requirements.txt
- Run export command: export FLASK_APP=vocapp.py
- Set database path and file in main app file vocapp.py
- To initilize a database use command: flask db init
- To to create and migrate a database: flask db migrate
- After migration use: flask db upgrade to save changes is the database