mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 12:06:27 +03:00
15 lines
475 B
Cheetah
15 lines
475 B
Cheetah
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# This file is part of Nominatim. (https://nominatim.org)
|
|
#
|
|
# Copyright (C) 2022 by the Nominatim developer community.
|
|
# For a full list of authors see the git log.
|
|
"""
|
|
Path settings for extra data used by Nominatim (installed version).
|
|
"""
|
|
from pathlib import Path
|
|
|
|
SQLLIB_DIR = (Path('@NOMINATIM_LIBDIR@') / 'lib-sql').resolve()
|
|
DATA_DIR = Path('@NOMINATIM_DATADIR@').resolve()
|
|
CONFIG_DIR = Path('@NOMINATIM_CONFIGDIR@').resolve()
|