]> git.openstreetmap.org Git - nominatim.git/blob - docs/develop/Development-Environment.md
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / docs / develop / Development-Environment.md
1 # Setting up Nominatim for Development
2
3 This chapter gives an overview how to set up Nominatim for developement
4 and how to run tests.
5
6 !!! Important
7     This guide assumes that you develop under the latest version of Ubuntu. You
8     can of course also use your favourite distribution. You just might have to
9     adapt the commands below slightly, in particular the commands for installing
10     additional software.
11
12 ## Installing Nominatim
13
14 The first step is to install Nominatim itself. Please follow the installation
15 instructions in the [Admin section](../admin/Installation.md). You don't need
16 to set up a webserver for development, the webserver that is included with PHP
17 is sufficient.
18
19 If you want to run Nominatim in a VM via Vagrant, use the default `ubuntu` setup.
20 Vagrant's libvirt provider runs out-of-the-box under Ubuntu. You also need to
21 install an NFS daemon to enable directory sharing between host and guest. The
22 following packages should get you started:
23
24     sudo apt install vagrant vagrant-libvirt libvirt-daemon nfs-kernel-server
25
26 ## Prerequisites for testing and documentation
27
28 The Nominatim test suite consists of behavioural tests (using behave) and
29 unit tests (using PHPUnit for PHP code and pytest for Python code).
30 It has the following additional requirements:
31
32 * [behave test framework](https://behave.readthedocs.io) >= 1.2.6
33 * [phpunit](https://phpunit.de) (9.5 is known to work)
34 * [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer)
35 * [Pylint](https://pylint.org/) (CI always runs the latest version from pip)
36 * [mypy](http://mypy-lang.org/) (plus typing information for external libs)
37 * [Python Typing Extensions](https://github.com/python/typing_extensions) (for Python < 3.9)
38 * [pytest](https://pytest.org)
39
40 The documentation is built with mkdocs:
41
42 * [mkdocs](https://www.mkdocs.org/) >= 1.1.2
43 * [mkdocstrings](https://mkdocstrings.github.io/)
44
45 ### Installing prerequisites on Ubuntu/Debian
46
47 Some of the Python packages require the newest version which is not yet
48 available with the current distributions. Therefore it is recommended to
49 install pip to get the newest versions.
50
51 To install all necessary packages run:
52
53 ```sh
54 sudo apt install php-cgi phpunit php-codesniffer \
55                  python3-pip python3-setuptools python3-dev
56
57 pip3 install --user behave mkdocs mkdocstrings pytest \
58                     pylint mypy types-PyYAML types-jinja2 types-psycopg2
59 ```
60
61 The `mkdocs` executable will be located in `.local/bin`. You may have to add
62 this directory to your path, for example by running:
63
64 ```
65 echo 'export PATH=~/.local/bin:$PATH' > ~/.profile
66 ```
67
68 If your distribution does not have PHPUnit 7.3+, you can install it (as well
69 as CodeSniffer) via composer:
70
71 ```
72 sudo apt-get install composer
73 composer global require "squizlabs/php_codesniffer=*"
74 composer global require "phpunit/phpunit=8.*"
75 ```
76
77 The binaries are found in `.config/composer/vendor/bin`. You need to add this
78 to your PATH as well:
79
80 ```
81 echo 'export PATH=~/.config/composer/vendor/bin:$PATH' > ~/.profile
82 ```
83
84
85 ## Executing Tests
86
87 All tests are located in the `/test` directory.
88
89 To run all tests just go to the build directory and run make:
90
91 ```sh
92 cd build
93 make test
94 ```
95
96 For more information about the structure of the tests and how to change and
97 extend the test suite, see the [Testing chapter](Testing.md).
98
99 ## Documentation Pages
100
101 The [Nominatim documentation](https://nominatim.org/release-docs/develop/) is
102 built using the [MkDocs](https://www.mkdocs.org/) static site generation
103 framework. The master branch is automatically deployed every night on
104 [https://nominatim.org/release-docs/develop/](https://nominatim.org/release-docs/develop/)
105
106 To build the documentation, go to the build directory and run
107
108 ```
109 make doc
110 INFO - Cleaning site directory
111 INFO - Building documentation to directory: /home/vagrant/build/site-html
112 ```
113
114 This runs `mkdocs build` plus extra transformation of some files and adds
115 symlinks (see `CMakeLists.txt` for the exact steps).
116
117 Now you can start webserver for local testing
118
119 ```
120 build> make serve-doc
121 [server:296] Serving on http://127.0.0.1:8000
122 [handlers:62] Start watching changes
123 ```
124
125 If you develop inside a Vagrant virtual machine, use a port that is forwarded
126 to your host:
127
128 ```
129 build> PYTHONPATH=$SRCDIR mkdocs serve --dev-addr 0.0.0.0:8088
130 [server:296] Serving on http://0.0.0.0:8088
131 [handlers:62] Start watching changes
132 ```