adapted INSTALL

This commit is contained in:
Oskar Hahn 2012-04-18 15:57:15 +02:00
parent 49e2f73df4
commit 1c7fcb90b4
1 changed files with 4 additions and 39 deletions

43
INSTALL
View File

@ -45,26 +45,9 @@ I. Installation on Windows (32/64bit)
If you have write access use instead: If you have write access use instead:
hg clone ssh://hg@openslides.org/openslides hg clone ssh://hg@openslides.org/openslides
5. Copy default.settings.py to settings.py 5. Run start.py
(in subdirectory 'openslides')
6. Create OpenSlides database (and follow on screen instruction). python start.py
Go to the extracted OpenSlides root directory and enter:
python manage.py syncdb
-> Note: Answer "yes" to create superuser!
7. Run OpenSlides server:
python manage.py runserver
Optional: Add <port> or <address:port> to use server on custom
address/port.
8. Open OpenSlides in your browser:
http://127.0.0.1:8000/ (or customized server address:port)
@ -105,27 +88,9 @@ system.
pip install django django-mptt reportlab pil simplejson mercurial pip install django django-mptt reportlab pil simplejson mercurial
5. Copy default.settings.py to settings.py: 5. Run start.py
cp openslides/default.settings.py openslides/settings.py python start.py
6. Create OpenSlides database in the OpenSlides root directory
and follow on screen instruction:
python manage.py syncdb
-> Note: Answer "yes" to create superuser!
7. Run OpenSlides server:
python manage.py runserver
Optional: Add <port> or <address:port> to use server on custom
address/port.
8. Open OpenSlides in your browser:
http://127.0.0.1:8000/ (or customized server address:port)
-- --