Merge pull request #41 from NicholasAntonov/master

Fix readme and errors preventing running project
keepfolder
eshellman 2017-10-23 10:26:25 -04:00 committed by GitHub
commit 8da877a813
2 changed files with 4 additions and 10 deletions

View File

@ -19,7 +19,8 @@ Here are some instructions for setting up regluit for development on
an Ubuntu system. If you are on OS X see notes below
to install python-setuptools in step 1:
1. `aptitude install python-setuptools git python-lxml`
1. `sudo apt-get upgrade gcc`
1. `sudo apt-get install python-setuptools git python-lxml build_essential libssl-dev libffi-dev python2.7dev libxml2-dev libxslt-dev libmysqlclient-dev`
1. `sudo easy_install virtualenv virtualenvwrapper`
1. `git clone git@github.com:Gluejar/regluit.git`
1. `cd regluit`
@ -33,7 +34,7 @@ to install python-setuptools in step 1:
1. edit the files in settings/keys filling in account and key information OR if you have the ansible vault password, install ansible, then from the vagrant directory run `ansible-playbook create_keys.yml`
1. `echo 'export DJANGO_SETTINGS_MODULE=regluit.settings.me' >> ~/.virtualenvs/regluit/bin/postactivate`
1. `deactivate ; workon regluit`
1. `django-admin.py syncdb --migrate --noinput`
1. `django-admin.py migrate --noinput`
1. `django-admin.py celeryd --loglevel=INFO` start the celery daemon to perform asynchronous tasks like adding related editions, and display logging information in the foreground.`
1. `django-admin.py celerybeat -l INFO` to start the celerybeat daemon to handle scheduled tasks.
1. `django-admin.py runserver 0.0.0.0:8000` (you can change the port number from the default value of 8000)

View File

@ -1702,19 +1702,12 @@ def surveys_summary(request, qid, work_id):
if not request.user.is_authenticated() :
return HttpResponseRedirect(reverse('surveys'))
return answer_summary(
<<<<<<< HEAD:frontend/views.py
request,
qid,
answer_filter=works_user_can_admin_filter(request, work_id),
)
=======
request,
qid,
answer_filter=works_user_can_admin_filter(request, work_id),
)
>>>>>>> Gluejar/master:frontend/views/__init__.py
def new_survey(request, work_id):
if not request.user.is_authenticated() :
return HttpResponseRedirect(reverse('surveys'))