A web application that allows students to make appointments with tutors in the CCI tutoring center.
Warning--at the moment, you need Django 1.6.5. This project breaks with Django 1.7!
###Requirements
- Django 1.6.5
- Python 2.7
###Installation
- Install Django 1.6.5
- Install Django-Bootstrap-3
- Install Django-Bootstrap-Calendar (i.e., run
python setup.py install
) - Install jsmin 2.0.9
###How to Run
cd
into the "Tutoring-Application" folder- Enter
python 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. - Enter
python manage.py runserver
into the terminal. - Point your browser to http://localhost:8000
###FAQ
- How do I remove all database entries / reset the application?
Remove the sqlite file to remove all database entries of the application (however, you will need to run
python manage.py syncdb
again). - Do I need to run
python manage.py syncdb
everytime I run the application? No, you only need to run that command once. Once the database is synced, just runpython manage.py runserver
thereafter to run the application.