Done. Acum aveți sursele WoUSO local, în directorul wouso. Dacă întâmpinați probleme contactați-ne pe lista de discuții.
Install Python >= 2.7 and virtualenv; activate the virtualenv:
virtualenv -p python2.7 sandbox
echo '*' > sandbox/.gitignore
. sandbox/bin/activate
Install dependencies:
pip install -r requirements-pip # optional, the same command with: requirements-extra
(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
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