summaryrefslogtreecommitdiff
path: root/testapp/README.rst
diff options
context:
space:
mode:
authorprathamesh2014-08-06 13:43:54 +0530
committerprathamesh2014-08-06 13:43:54 +0530
commit740b0acfe6436cf2919b6da655f379ca6c7faaf4 (patch)
tree492c06114301efb9d594aeda62018f11c59972b7 /testapp/README.rst
parent8abc334f9b6ab9b4285a4880fa57df5ea175ad45 (diff)
downloadonline_test-740b0acfe6436cf2919b6da655f379ca6c7faaf4.tar.gz
online_test-740b0acfe6436cf2919b6da655f379ca6c7faaf4.tar.bz2
online_test-740b0acfe6436cf2919b6da655f379ca6c7faaf4.zip
Readme modified
Diffstat (limited to 'testapp/README.rst')
-rw-r--r--testapp/README.rst19
1 files changed, 9 insertions, 10 deletions
diff --git a/testapp/README.rst b/testapp/README.rst
index 66535ff..aa0ee81 100644
--- a/testapp/README.rst
+++ b/testapp/README.rst
@@ -10,22 +10,22 @@ conduct online test and monitor the test.
Quick start
------------
-1. Add "exam", "taggit" and "taggit_autocomplete_modified" apps
+1. Add "testapp.exam", "taggit" and "taggit_autocomplete_modified" apps
to your INSTALLED_APPS setting as follows:
INSTALLED_APPS =(
- 'exam',
+ 'testapp.exam',
'taggit',
'taggit_autocomplete_modified',
)
-2. In project settings, add AUTH_PROFILE_MODULE = 'exam.Profile'
- You can change the exam.Profile to your desired app user profile.
+2. 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 "exam" and taggit_autocomplete_modified URL configuration
+3. Include the "testapp.exam" and taggit_autocomplete_modified URL configuration
in your project urls.py as follows:
- url(r'^exam/', include('exam.urls')),
+ url(r'^exam/', include('testapp.exam.urls')),
url(r'^taggit_autocomplete_modified/', include\
('taggit_autocomplete_modified.urls'))
@@ -43,9 +43,8 @@ Quick start
6. Start the development server and visit http://localhost:8000/exam/
-7. In exam app run code sever as superuser as follows:
+7. In exam app run code_sever command as superuser as follows:
- sudo python code_server.py
+ $ code_server
- Note: location of the above file will probably be as
- ../lib/python2.7/site-packages/exam/code_server.py
+ Note: You must have a sudo access to run the above command.