A Flashcard web app as part of the IITM POD MAD-1 Diploma Project. Project submitted by Vigneshwaran 21f1004210.
The server is preset with all the configurations, but any changes required can be passed through .env
file.
You can install the python dependencies using the requirements.txt
pip install -r requirements.txt
It's recommended to run the Flask using a WSGI app
gunicorn -w -b :8080 main:app
If guvicorn is not available, can also run for test using Flask run
export FLASK_APP=main.py
export FLASK_ENV=production
flask run