summaryrefslogtreecommitdiff
path: root/testapp
diff options
context:
space:
mode:
authorprathamesh2015-02-19 13:03:02 +0530
committerprathamesh2015-02-19 13:03:02 +0530
commit8350eedd62176d2756aef06c13b363e552337109 (patch)
tree3f632d830a650563c609963bd60aa515d4d4159e /testapp
parent09aed6db0be635d86c2bf7f9c9a989e6df1bceab (diff)
parente7e82959bb819e60ef5ab21f1950404d20e661a8 (diff)
downloadonline_test-8350eedd62176d2756aef06c13b363e552337109.tar.gz
online_test-8350eedd62176d2756aef06c13b363e552337109.tar.bz2
online_test-8350eedd62176d2756aef06c13b363e552337109.zip
Merge branch 'redirect_result_view' into question_navigation
Conflicts: dist/django-exam-0.1.tar.gz Resolved
Diffstat (limited to 'testapp')
-rw-r--r--testapp/README.rst15
1 files changed, 9 insertions, 6 deletions
diff --git a/testapp/README.rst b/testapp/README.rst
index 6f49d4b..f4790a3 100644
--- a/testapp/README.rst
+++ b/testapp/README.rst
@@ -10,7 +10,10 @@ conduct online test and monitor the test.
Quick start
------------
-1. Add "testapp.exam", "taggit" and "taggit_autocomplete_modified" apps
+1. In yourterminal run the following command::
+ $ easy_install git+https://github.com/FOSSEE/online_test.git#egg=django_exam-0.1
+
+2. Add "testapp.exam", "taggit" and "taggit_autocomplete_modified" apps
to your INSTALLED_APPS setting as follows::
INSTALLED_APPS =(
@@ -19,10 +22,10 @@ Quick start
'taggit_autocomplete_modified',
)
-2. In project settings, add AUTH_PROFILE_MODULE = 'testapp.exam.Profile'
+3. In project settings, add AUTH_PROFILE_MODULE = 'testapp.exam.Profile'
You can change the testapp.exam.Profile to your desired app user profile.
-3. Include the "testapp.exam" and taggit_autocomplete_modified URL configuration
+4. Include the "testapp.exam" and taggit_autocomplete_modified URL configuration
in your project urls.py as follows::
url(r'^exam/', include('testapp.exam.urls')),
@@ -30,11 +33,11 @@ Quick start
('taggit_autocomplete_modified.urls'))
-4. Run 'python manage.py syncdb' to create models for the new installed apps.
+5. Run 'python manage.py syncdb' to create models for the new installed apps.
-5. Start the development server and visit http://localhost:8000/exam/
+6. Start the development server and visit http://localhost:8000/exam/
-6. In exam app run code_sever command as superuser as follows::
+7. In exam app run code_sever command as superuser as follows::
$ code_server