mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 05:18:00 +00:00
This replaces {data_dir}/settings throughout the code, so that
the configuration may be placed somewhere else in the directory
structure (e.g. in /etc).
18 lines
596 B
Python
Executable File
18 lines
596 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
import os
|
|
|
|
sys.path.insert(1, '@CMAKE_SOURCE_DIR@')
|
|
|
|
os.environ['NOMINATIM_NOMINATIM_TOOL'] = os.path.abspath(__file__)
|
|
|
|
from nominatim import cli
|
|
|
|
exit(cli.nominatim(module_dir='@CMAKE_BINARY_DIR@/module',
|
|
osm2pgsql_path='@CMAKE_BINARY_DIR@/osm2pgsql/osm2pgsql',
|
|
phplib_dir='@CMAKE_SOURCE_DIR@/lib-php',
|
|
sqllib_dir='@CMAKE_SOURCE_DIR@/lib-sql',
|
|
data_dir='@CMAKE_SOURCE_DIR@',
|
|
config_dir='@CMAKE_SOURCE_DIR@/settings',
|
|
phpcgi_path='@PHPCGI_BIN@'))
|