Project files and report for Doc2Home, a doctors' surgery management system built for my A-Level Computer Science coursework. It received a mark of 100% at grade A*.
view my YouTube channel at https://www.youtube.com/@kwabenankyi
view testing at https://www.youtube.com/playlist?list=PLu_pPOTbiFXCWisJc_xDfAgUyTo6QffgL
To run the program:
- recreate virtual environment with instruction:
"python -m venv venv"
- run virtual environment
"venv\Scripts\activate" on Windows OR "source venv/bin/activate" on Mac
- install modules with pip:
"pip install -r requirements.txt"
- identify the flask app "nea.py"
"set FLASK_APP=nea.py" on Windows, "export FLASK_APP=nea.py" on Mac
- run the application, and include " --host:0.0.0.0" at the end of the command to run the app on a local network.
"flask run"
- if ImportError is raised, run command "python nea.py" to install uninstalled packages