World of USO is a quiz game with questions from USO course, 1st year, ACS.
Install Python >= 2.7 and virtualenv; activate the virtualenv:
virtualenv -p python2.7 sandbox echo '*' > sandbox/.gitignore . sandbox/bin/activate
Install dependencies:
(on Ubuntu) sudo apt-get install python-dev libldap2-dev libsasl2-dev pip install -r requirements-pip # optional, the same command with: requirements-extra
Install django-piston (by hand, because of a weird bug):
curl 'https://pypi.python.org/packages/source/d/django-piston/django-piston-0.2.3.tar.gz' | tar xzf - cd django-piston-0.2.3; python setup.py install cd ..; rm -r django-piston-0.2.3
Go to wouso folder, run everything from there:
cd wouso
Copy the default settings:
cp settings.py.example settings.py
Create database tables and load initial data:
./manage.py wousoctl --setup
Run the server:
./manage.py runserver