Skip to content

alexef/wouso-1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

World of USO

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

Installing

You must have installed:

python >= 2.7 python-django python-imaging python-virtualenv python-dev libsqlite3-dev sqlite3

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

    virtualenv -p python2.7 sandbox
    echo '*' > sandbox/.gitignore
    . sandbox/bin/activate
  2. Install dependencies:

    pip install -r requirements-pip
  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-02.3
  4. Go to wouso folder, run everything from there:

    cd wouso
  5. Copy the default settings:

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

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

    ./manage.py runserver

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 92.1%
  • JavaScript 7.1%
  • Shell 0.8%