A Django based exam website.
- Git
- Python
version 3.6.2
https://www.python.org/downloads/release/python-362/ - virtualenv
install command > pip install virtualenv - Mysql database
- Redis server
version 3.0.504
https://github.com/microsoftarchive/redis/releases
- Firstly, clone the repository using the git shell
$ git clone https://github.com/AshikurRahman-sec/Exam_System - Create a virtual environment and activate it.
$ virtualenv venv
$ venv\Scripts\activateon Windows or$ source venv/bin/activateon Posix system - Goto the base directory of the project
cd exam_system - Install the requirements for the project
$ pip install -r requirements.txt - Now start the localhost server
$ python manage.py runserver - Now start the Celery server
$ celery -A Exam_System worker -l info