taygun / wouso

World of USO - the Official Repository

Home Page:http://wouso.rosedu.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

World of USO

World of USO is a quiz game with questions from USO course, 1st year, ACS.

Installing

  1. Install Python >= 2.7 and virtualenv; activate the virtualenv:

    virtualenv -p python2.7 sandbox
    echo '*' > sandbox/.gitignore
    . sandbox/bin/activate
    
  2. 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
    
  3. Install django-piston (by hand, because of a weird bug):

    curl 'http://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
    
  1. Go to wouso folder, run everything from there:

    cd wouso
    
  2. Copy the default settings:

    cp settings.py.example settings.py
    
  3. Create database tables and load initial data:

    ./manage.py wousoctl --setup
    
  4. Run the server:

    ./manage.py runserver
    

About

World of USO - the Official Repository

http://wouso.rosedu.org

License:Other


Languages

Language:Python 83.1%Language:JavaScript 16.4%Language:Shell 0.5%