A Flask web app for cognitive assessment of children, with role-based dashboards and adaptive question generation.
- User authentication (Flask-Login, bcrypt-hashed passwords)
- Child profile management
- Age-tiered assessment tests (6-8, 9-11, 12-14)
- Results dashboard
- Python, Flask
- Flask-SQLAlchemy, Flask-Login, Flask-Bcrypt
git clone https://github.com/zulqarnain2004/mvp.git
cd mvp
pip install -r requirements.txt
copy .env.example .env
python init_db.py
python run.pymvp/ ├── app.py # Flask app and routes ├── config.py # Configuration ├── database.py # SQLAlchemy models ├── question_generator.py # Adaptive question logic ├── init_db.py # DB initialization ├── run.py / wsgi.py # Entry points ├── templates (.html) └── static (.css, *.js)
MIT