mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 03:42:11 +03:00
add script for in-source execution
This commit is contained in:
parent
6e89310a92
commit
44fface92a
18
nominatim-cli.py
Executable file
18
nominatim-cli.py
Executable file
@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
#
|
||||||
|
# This file is part of Nominatim. (https://nominatim.org)
|
||||||
|
#
|
||||||
|
# Copyright (C) 2024 by the Nominatim developer community.
|
||||||
|
# For a full list of authors see the git log.
|
||||||
|
"""
|
||||||
|
Helper script for development to run nominatim from the source directory.
|
||||||
|
"""
|
||||||
|
from pathlib import Path
|
||||||
|
import sys
|
||||||
|
|
||||||
|
sys.path.insert(1, str((Path(__file__) / '..' / 'src').resolve()))
|
||||||
|
|
||||||
|
from nominatim_db import cli
|
||||||
|
|
||||||
|
exit(cli.nominatim(module_dir=None, osm2pgsql_path=None))
|
Loading…
Reference in New Issue
Block a user