Go to file
Emanuel Schütze ba496d54b4 Added motion category list view. 2018-08-27 09:10:57 +02:00
client Added motion category list view. 2018-08-27 09:10:57 +02:00
logo Added reduced projector logo. 2016-01-13 10:47:27 +01:00
make Update to channels 2 2018-08-22 06:30:11 +02:00
openslides Merge remote-tracking branch 'upstream/master' into OpenSlides-3 2018-08-23 21:31:24 +02:00
tests Merge remote-tracking branch 'upstream/master' into OpenSlides-3 2018-08-23 21:31:24 +02:00
.gitignore Merge pull request #3796 from ostcar/channels2 2018-08-22 06:37:29 +02:00
.travis.yml drop python 3.5 2018-08-23 17:51:30 +02:00
AUTHORS save language selection to session storage 2018-01-20 20:57:53 +01:00
CHANGELOG.rst Changed CHANGELOG. 2018-08-23 21:50:46 +02:00
DEVELOPMENT.rst drop python 3.5 2018-08-23 17:51:30 +02:00
Dockerfile drop python 3.5 2018-08-23 17:51:30 +02:00
LICENSE Added missing translations. 2018-02-16 22:06:32 +01:00
MANIFEST.in Updated README. 2017-03-28 18:11:28 +02:00
README.rst drop python 3.5 2018-08-23 17:51:30 +02:00
bower.json Added page numbers and categories in TOC of motion PDF. 2018-07-13 14:26:29 +02:00
gulpfile.js Upgrade to node v10 and gulp 4 2018-06-15 08:54:09 +02:00
manage.py Use python3 2014-08-24 21:21:11 +02:00
package-lock.json document, restructure, add relations 2018-08-15 10:19:46 +02:00
package.json re-add package.json 2018-08-15 10:19:46 +02:00
requirements.txt drop python 3.5 2018-08-23 17:51:30 +02:00
requirements_big_mode.txt Updates files for big mode 2018-08-23 11:26:05 +02:00
requirements_production.txt Add a protocol for websocket 2018-08-23 21:02:52 +02:00
setup.cfg Update to channels 2 2018-08-22 06:30:11 +02:00
setup.py fix new super fast big mode (even faster) 2018-08-24 12:36:21 +02:00
yarn.lock Add animation to transitions, and navigation. 2018-08-15 10:19:46 +02:00

README.rst

============
 OpenSlides
============

What is OpenSlides?
===================

OpenSlides is a free, web based presentation and assembly system for
managing and projecting agenda, motions and elections of an assembly. See
https://openslides.org/ for more information.


Requirements
============

The OpenSlides server runs everywhere where Python is running (for example on
GNU/Linux, Mac or Windows). For the OpenSlides client a current webbrowser is required.


Installation
============

1. Installation on GNU/Linux or Mac OS X
----------------------------------------

a. Check requirements
'''''''''''''''''''''

Make sure that you have installed `Python (>= 3.6) <https://www.python.org/>`_
on your system.

Additional you need build-essential packages, header files and a static
library for Python and also the pyvenv-3 binary package for python3.

E.g. run on Debian/Ubuntu::

    $ sudo apt-get install build-essential python3-dev python3-venv


b. Setup a virtual Python environment (optional)
''''''''''''''''''''''''''''''''''''''''''''''''

You can setup a virtual Python environment using the virtual environment
(venv) package for Python to install OpenSlides as non-root user.

Create your OpenSlides directory and change to it::

    $ mkdir OpenSlides
    $ cd OpenSlides

Setup and activate the virtual environment::

    $ python3 -m venv .virtualenv
    $ source .virtualenv/bin/activate
    $ pip install --upgrade setuptools pip


c. Install OpenSlides
'''''''''''''''''''''

To install OpenSlides just run::

    $ pip install openslides

This installs the latest stable version. To install a specific (beta)
version use ``openslides==x.y``.

You can also use the package from the `OpenSlides website
<https://openslides.org/>`_. Download latest OpenSlides release as
compressed tar archive and run::

    $ pip install openslides-x.y.tar.gz

This will install all required Python packages (see
``requirements_production.txt``).


d. Start OpenSlides
'''''''''''''''''''

To start OpenSlides simply run::

    $ openslides

If you run this command the first time, a new database and the admin account
(Username: ``admin``, Password: ``admin``) will be created. Please change the
password after first login!

OpenSlides will start a webserver. It will also try to open the webinterface in
your default webbrowser. The server will try to listen on the local ip address
on port 8000. That means that the server will be available to everyone on your
local network (at least for commonly used network configurations).

If you use a virtual environment (see step b.), do not forget to activate
the environment before restart after you closed the terminal::

    $ source .virtualenv/bin/activate

To get help on the command line options run::

    $ openslides --help

You can store settings, database and other personal files in a local
subdirectory and use these files e. g. if you want to run multiple
instances of OpenSlides::

    $ openslides start --local-installation


2. Installation on Windows
--------------------------

Download the latest portable version of OpenSlides for Windows from
`OpenSlides website <https://openslides.org/>`_ which does not require any
install steps. Simply unzip the downloaded file and run ``openslides.exe``.


Development
===========

If you want to contribute to OpenSlides, have a look at `OpenSlides website
<https://openslides.org/>`_ and write us an email. There is also an
`instruction to install the development version
<https://github.com/OpenSlides/OpenSlides/blob/master/DEVELOPMENT.rst>`_.

In OpenSlides repository you find a ``Dockerfile`` but this is not for
production use. See our `Multi instance backend for OpenSlides
<https://github.com/OpenSlides/openslides-multiinstance-backend>`_ for more
information.


Installation for big assemblies
===============================

The installation steps described above install OpenSlides in a way that
does NOT support hundreds of concurrent clients. To install OpenSlides for
big assemblies some variables have to be changed in the OpenSlides settings
file (usually called settings.py).

The configuration values that have to be altered are:

* CHANNEL_LAYERS
* DATABASES
* SESSION_ENGINE
* REDIS_ADDRESS

You should use a webserver like Apache HTTP Server or nginx to serve the
static and media files as proxy server in front of your OpenSlides
interface server. You also should use a database like PostgreSQL and Redis
as channels backend, cache backend and session engine. Finally you should
use gunicorn with uvicorn as interface server.

Please see the respective section in the `DEVELOPMENT.rst
<https://github.com/OpenSlides/OpenSlides/blob/master/DEVELOPMENT.rst>`_ and:

* https://channels.readthedocs.io/en/latest/deploying.html
* https://github.com/sebleier/django-redis-cache
* https://docs.djangoproject.com/en/1.10/ref/settings/#databases


Used software
=============

OpenSlides uses the following projects or parts of them:

* Several Python packages (see ``requirements_production.txt``).

* Several JavaScript packages (see ``bower.json``)

  * `angular <http://angularjs.org>`_, License: MIT
  * `angular-animate <http://angularjs.org>`_, License: MIT
  * `angular-bootstrap-colorpicker <https://github.com/buberdds/angular-bootstrap-colorpicker>`_, License: MIT
  * `angular-chosen-localytics <http://github.com/leocaseiro/angular-chosen>`_, License: MIT
  * `angular-ckeditor <https://github.com/lemonde/angular-ckeditor>`_, License: MIT
  * `angular-file-saver <https://github.com/alferov/angular-file-saver>`_, License: MIT
  * `angular-formly <http://formly-js.github.io/angular-formly/>`_, License: MIT
  * `angular-formly-templates-bootstrap <http://formly-js.github.io/angular-formly-templates-bootstrap/>`_, License: MIT
  * `angular-gettext <http://angular-gettext.rocketeer.be/>`_, License: MIT
  * `angular-messages <http://angularjs.org>`_, License: MIT
  * `angular-pdf <http://github.com/sayanee/angularjs-pdf>`_, License: MIT
  * `angular-sanitize <http://angularjs.org>`_, License: MIT
  * `angular-scroll-glue <https://github.com/Luegg/angularjs-scroll-glue>`_, License: MIT
  * `angular-ui-bootstrap <http://angular-ui.github.io/bootstrap/>`_, License: MIT
  * `angular-ui-router <http://angular-ui.github.io/ui-router/>`_, License: MIT
  * `angular-ui-router-title <https://github.com/nonplus/angular-ui-router-title>`_, License: MIT
  * `angular-ui-tree <https://github.com/angular-ui-tree/angular-ui-tree>`_, License: MIT
  * `angular-xeditable <http://vitalets.github.io/angular-xeditable>`_, License: MIT
  * `angularjs-scroll-glue <https://github.com/Luegg/angularjs-scroll-glue>`_, License: MIT
  * `angularjs-slider <https://github.com/angular-slider/angularjs-slider>`_, License: MIT
  * `api-check <https://github.com/kentcdodds/api-check>`_, License: MIT
  * `blob-polyfill <https://github.com/bjornstar/blob-polyfill>`_, License: MIT
  * `bootstrap <http://getbootstrap.com>`_, License: MIT
  * `bootstrap <http://getbootstrap.com>`_, License: MIT
  * `bootstrap-css-only <https://getbootstrap.com/>`_, License: MIT
  * `bootstrap-css-only <http://getbootstrap.com>`_, License: MIT
  * `bootstrap-ui-datetime-picker <https://github.com/Gillardo/bootstrap-ui-datetime-picker>`_, License: MIT
  * `chosen <https://harvesthq.github.io/chosen/>`_, License: https://github.com/harvesthq/chosen/blob/master/LICENSE.md
  * `chosen-js <https://harvesthq.github.io/chosen/>`_, License: MIT
  * `ckeditor <http://ckeditor.com>`_, License: (GPL-2.0 OR LGPL-2.1 OR MPL-1.1)
  * `docxtemplater <https://github.com/open-xml-templating/docxtemplater>`_, License: MIT
  * `file-saver.js <https://github.com/Teleborder/FileSaver.js>`_, License: LICENSE.md
  * `font-awesome-bower <https://github.com/tdg5/font-awesome-bower>`_, License: MIT
  * `jquery <https://jquery.com>`_, License: MIT
  * `jquery.cookie <https://plugins.jquery.com/cookie>`_, License: MIT
  * `js-data <http://www.js-data.io>`_, License: MIT
  * `js-data-angular <https://github.com/js-data/js-data-angular>`_, License: MIT
  * `jszip <http://stuartk.com/jszip>`_, License: MIT or GPLv3
  * `lodash <https://lodash.com/>`_, License: MIT
  * `ng-dialog <https://github.com/likeastore/ngDialog>`_, License: MIT
  * `ng-file-upload <https://github.com/danialfarid/ng-file-upload>`_, License: MIT
  * `ngbootbox <https://github.com/eriktufvesson/ngBootbox>`_, License: MIT
  * `ngStorage <https://github.com/gsklee/ngStorage>`_, License: MIT
  * `papaparse <http://papaparse.com>`_, License: MIT
  * `pdfjs-dist <http://mozilla.github.io/pdf.js/>`_, License: Apache-2.0
  * `pdfmake <https://bpampuch.github.io/pdfmake>`_, License: MIT
  * `roboto-fontface <https://github.com/choffmeister/roboto-fontface-bower>`_, License: Apache-2.0


License and authors
===================

OpenSlides is Free/Libre Open Source Software (FLOSS), and distributed
under the MIT License, see ``LICENSE`` file. The authors of OpenSlides are
mentioned in the ``AUTHORS`` file.