Install

Obțineți o copie a ultimei versiuni WoUSO

  1. Dacă nu aveți deja instalat, instalați git.
  2. git clone https://github.com/rosedu/wouso.git.

Done. Acum aveți sursele WoUSO local, în directorul wouso. Dacă întâmpinați probleme contactați-ne pe lista de discuții.

Running

  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       # optional, the same command with: requirements-extra
  3. (optional) 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
  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

Table Of Contents

Previous topic

Guidelines

Next topic

Tutorial

This Page