Skip to content

Latest commit

 

History

History
28 lines (27 loc) · 472 Bytes

README.md

File metadata and controls

28 lines (27 loc) · 472 Bytes

CUET Classroom

Requirements:


  • Pyhton 3
  • Flask, SQLAlchemy, Bcrypt, WTForms
  pip install flask
  pip install flask-sqlalchemy
  pip install flask-bcrypt
  pip install flask-login
  pip install flask-wtf
  pip install wtf-components
  • Create a database file
  python createDB.py

or

  from classroom import db
  from classroom.models import User, Ct
  db.create_all()
  • Run run.py and goto localhost:5000
  python run.py