.. _installation: Installation ============ .. contents:: :local: :depth: 1 Install from Conda ------------------ .. warning:: TODO: Prepare Conda package. Install from GitHub ------------------- Check out code from the rook GitHub repo and start the installation: .. code-block:: console $ git clone https://github.com/roocs/rook.git $ cd rook Create Conda environment named `rook`: .. code-block:: console $ conda env create -f environment.yml $ source activate rook Install rook app: .. code-block:: console $ pip install -e . OR make install For development you can use this command: .. code-block:: console $ pip install -e ".[dev]" OR $ make develop Configure roocs --------------- ``rook`` is using daops_ for the operations. It needs a ``roocs.ini`` configuration file. You can overwrite the defaults by setting the environment variable ``ROOCS_CONFIG``. .. code-block:: console $ export ROOCS_CONFIG=~/.roocs.ini There is an example in ``etc/sample-roocs.ini``. For more information on the configuration settings, see https://roocs-utils.readthedocs.io/en/latest/configuration.html Start rook PyWPS service ------------------------ After successful installation you can start the service using the ``rook`` command-line. .. code-block:: console $ rook --help # show help $ rook start # start service with default configuration OR $ rook start --daemon # start service as daemon loading configuration forked process id: 42 The deployed WPS service is by default available on: http://localhost:5000/wps?service=WPS&version=1.0.0&request=GetCapabilities. .. NOTE:: Remember the process ID (PID) so you can stop the service with ``kill PID``. You can find which process uses a given port using the following command (here for port 5000): .. code-block:: console $ netstat -nlp | grep :5000 Check the log files for errors: .. code-block:: console $ tail -f pywps.log ... or do it the lazy way +++++++++++++++++++++++++ You can also use the ``Makefile`` to start and stop the service: .. code-block:: console $ make start $ make status $ tail -f pywps.log $ make stop Run rook as Docker container ---------------------------- You can also run rook as a Docker container. .. warning:: TODO: Describe Docker container support. Use Ansible to deploy rook on your System ----------------------------------------- Use the `Ansible playbook`_ for PyWPS to deploy rook on your system. .. _Ansible playbook: http://ansible-wps-playbook.readthedocs.io/en/latest/index.html .. _daops: https://github.com/roocs/daops