A web application that allows students to make appointments with tutors in the CCI tutoring center.
python setup.py install
)cd
into the "Tutoring-Application" folderpython manage.py syncdb
into the terminal. Follow the instructions if it's the first time running that command (if so, there won't be a db.sqlite file). You only need to do this once.python manage.py runserver
into the terminal.python manage.py syncdb
again).python manage.py syncdb
everytime I run the application?
No, you only need to run that command once. Once the database is synced, just run python manage.py runserver
thereafter to run the application.