From 84de7d4a0594a9f92ae0c1694b65dd9c822e32fd Mon Sep 17 00:00:00 2001 From: adityacp Date: Thu, 2 Jul 2020 14:46:41 +0530 Subject: Change multiple files - Add version in init - Add demo website information in readme - Update django version in requirements --- README.rst | 20 +++++++++++++++++++- online_test/__init__.py | 2 +- requirements/requirements-common.txt | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b030e55..3c5f3df 100644 --- a/README.rst +++ b/README.rst @@ -32,6 +32,18 @@ Features - Scales to over 500+ simultaneous users. - Distributed under the BSD license. +To get a glimpse of all the available features check our demo website https://yaksh-demo.fossee.in. It has 50 teacher and student login. + +**Sample teacher login** + +Username:- teacher1 +Password:- teacher1 + +**Sample student login** + +Username:- student1 +Password:- student1 + Requirements ============ @@ -61,7 +73,7 @@ miniconda. Download miniconda with Python 3.6 and above. * **Install redis server** - Redis is required for celery. Celery runs in background for regrading the papers. + Redis is required for celery. Celery runs a background task to re-evaluate the submissions. :: @@ -81,6 +93,12 @@ miniconda. Download miniconda with Python 3.6 and above. systemctl status redis +* **Run celery worker** + + :: + + celery -A online_test worker -B + * Ensure `pip `_ is installed **Installing Yaksh** diff --git a/online_test/__init__.py b/online_test/__init__.py index dcc123e..63a9920 100644 --- a/online_test/__init__.py +++ b/online_test/__init__.py @@ -4,4 +4,4 @@ from online_test.celery_settings import app as celery_app __all__ = ('celery_app',) -__version__ = '0.20.2' +__version__ = '0.21.0' diff --git a/requirements/requirements-common.txt b/requirements/requirements-common.txt index db5de43..b9901ae 100644 --- a/requirements/requirements-common.txt +++ b/requirements/requirements-common.txt @@ -1,6 +1,6 @@ -r requirements-codeserver.txt invoke==0.21.0 -django==3.0.3 +django==3.0.7 django-taggit==1.2.0 pytz==2019.3 requests-oauthlib>=0.6.1 -- cgit