2015-01-26 16:40:03 +01:00
|
|
|
.. index:: installation
|
|
|
|
|
|
|
|
=======
|
|
|
|
Install
|
|
|
|
=======
|
|
|
|
|
|
|
|
Working Environment
|
|
|
|
===================
|
|
|
|
|
2020-02-29 12:22:55 +01:00
|
|
|
To get a running work environment use `pipenv`_.
|
2015-01-26 16:40:03 +01:00
|
|
|
|
2020-02-29 12:22:55 +01:00
|
|
|
.. _pipenv: https://pipenv.kennethreitz.org/en/latest/
|
2015-01-26 16:40:03 +01:00
|
|
|
|
2020-02-29 12:22:55 +01:00
|
|
|
To get started install `pip` and `pipenv` and use `pipenv install --dev`:
|
2015-01-26 16:40:03 +01:00
|
|
|
|
|
|
|
.. code-block:: sh
|
|
|
|
|
2020-02-29 12:22:55 +01:00
|
|
|
$ apt install python3-pip
|
|
|
|
$ python3 -m pip install --user -U pipenv
|
|
|
|
$ pipenv install --dev
|
2015-01-26 16:40:03 +01:00
|
|
|
|
|
|
|
.. index:: celery, worker, file queue
|
|
|
|
|
|
|
|
Running the Celery worker
|
|
|
|
=========================
|
|
|
|
|
|
|
|
gvaweb uses the `Celery`_ distributed task queue system. The gvaweb logic is
|
|
|
|
executed by a celery worker. After all dependencies are installed you can go
|
|
|
|
into the gvaweb directory and run the celery worker with:
|
|
|
|
|
|
|
|
.. code-block:: sh
|
|
|
|
|
2020-02-29 12:22:55 +01:00
|
|
|
$ pipenv run celery -A gvaweb worker -Q web -l info
|
2015-01-26 16:40:03 +01:00
|
|
|
|
|
|
|
.. _Celery: http://www.celeryproject.org/
|