X-Git-Url: https://code.grnet.gr/git/pithos/blobdiff_plain/50f43df6e909234e0d0cd0302db8fa43ab168b66..fb0640327aaf0fb573ad04ad6ddc3fef3e57fd13:/README diff --git a/README b/README index dce4f43..4193cc8 100644 --- a/README +++ b/README @@ -1,7 +1,8 @@ README ====== -Pithos is a file storage service, built using Django (https://www.djangoproject.com/). +Pithos is a file storage service, built by GRNET using Django (https://www.djangoproject.com/). +Learn more about Pithos at: http://code.grnet.gr/projects/pithos Consult LICENSE for licensing information. Documentation @@ -12,10 +13,8 @@ All docs are in the docs/source directory. The .rst files are perfectly readable To build the documentation you need to have Sphinx (http://sphinx.pocoo.org/) installed. On a typical debian-based Linux system run: - apt-get install python-django python-setuptools python-sphinx - apt-get install python-sqlalchemy python-psycopg2 - -Enter the pithos dir, copy settings.py.dist to settings.py. + apt-get install python-django python-django-south python-setuptools python-sphinx python-httplib2 + apt-get install python-sqlalchemy python-mysqldb python-psycopg2 Then run: python setup.py build_sphinx @@ -31,15 +30,17 @@ Running the server ------------------ Make sure you have all required packages installed: - apt-get install python-django python-setuptools python-sphinx - apt-get install python-sqlalchemy python-psycopg2 - -Enter the pithos dir, copy settings.py.dist to settings.py. + apt-get install python-django python-setuptools python-sphinx python-httplib2 + apt-get install python-sqlalchemy python-mysqldb python-psycopg2 Then run: python manage.py syncdb - python manage.py loaddata im/fixtures/auth_test_data.json (to load sample users) + python manage.py schemamigration im --initial + python manage.py loaddata admin_user python manage.py runserver +Go to: + http://127.0.0.1:8000/im/admin?user=admin&token=0000 + This server is useful during development, but should not be used for deployment. To deploy Pithos using Apache, take a look at the Administrator Guide in docs.