An auditorium management software based on Python Flask.
- flask
pip3 install flask
- flask_sqlalchemy
pip3 install flask_sqlalchemy
- flask_wtf
pip3 install flask_wtf
- Setup Python virtual environment
This software runs on local machine and supports three categories of users: Managers, Salespeople and Accounts Clerks. OTP based login is supported. The default email address of manager is set as: manager.officer.12345@gmail.com. This manager can create other employees who can have their own email IDs. To change the manager's email address, open a terminal window in the folder containing the project and run the following:
python -i
from app import db
db.create_all()
from app import Employee
x = Employee(username='FooBar', email='foobar@gmail.com', password='12345678abcd', portfolio='Manager')
db.session.add(x)
db.session.commit()