restructure developer's manual

Add a section on setting up the development environment which now
also includes the former chapter on recreating the documentation.
Move the README from test/ into the manual as the new Testing
chapter.
This commit is contained in:
Sarah Hoffmann
2020-09-17 09:54:46 +02:00
parent fb63a7418e
commit 2b11a47a2f
7 changed files with 217 additions and 180 deletions

View File

@@ -1,9 +1,14 @@
all: bdd php
no-test-db: bdd-no-test-db php
bdd:
cd bdd && behave -DREMOVE_TEMPLATE=1
bdd-no-test-db:
cd bdd && behave -DREMOVE_TEMPLATE=1 db osm2pgsql
php:
cd php && phpunit ./
.PHONY: bdd php
.PHONY: bdd php no-test-db