diff options
author | Prabhu Ramachandran | 2015-05-27 22:20:45 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2015-05-27 22:20:45 +0530 |
commit | f3521eeb7dc05e4c529f8e50724ca5b3b8cc3f83 (patch) | |
tree | bf74cd706cad667f3b41a3e09d756fb9e73e898c /testapp/README.rst | |
parent | a83b57aee80959f11f96ad6a3a738c9fac906e26 (diff) | |
parent | 6f04127b10fad666a689b18db6a5a9aa1270d739 (diff) | |
download | online_test-f3521eeb7dc05e4c529f8e50724ca5b3b8cc3f83.tar.gz online_test-f3521eeb7dc05e4c529f8e50724ca5b3b8cc3f83.tar.bz2 online_test-f3521eeb7dc05e4c529f8e50724ca5b3b8cc3f83.zip |
Merge pull request #50 from hardythe1/remotes/origin/RemoveBuildout
Removed Buildout and related files & made a standard Django project
Diffstat (limited to 'testapp/README.rst')
-rw-r--r-- | testapp/README.rst | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/testapp/README.rst b/testapp/README.rst deleted file mode 100644 index e6f8380..0000000 --- a/testapp/README.rst +++ /dev/null @@ -1,48 +0,0 @@ -=============== -Online Exam -=============== - -Online test application lets user(student) take an online programming test. -A special user called moderator can add questions, create question paper, -conduct online test and monitor the test. - - -Quick start ------------- - -1. In your terminal 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 =( - 'testapp.exam', - 'taggit', - 'taggit_autocomplete_modified', - ) - -3. In project settings, add AUTH_PROFILE_MODULE = 'testapp.exam.Profile' - You can change the testapp.exam.Profile to your desired app user profile. - -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')), - url(r'^taggit_autocomplete_modified/', include\ - ('taggit_autocomplete_modified.urls')) - - -5. Run 'python manage.py syncdb' to create models for the new installed apps. - -6. Run 'python manage.py runserver' to start the development server - and visit http://localhost:8000/exam/ - -7. Run code_server command as superuser as follows:: - - $ sudo code_server - - Note: If you are using virtual python environment, then activate the environment - using sudo. Then simply run the code_server command as follows:: - - $ code_server |