mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-14 18:37:58 +00:00
11 lines
241 B
PHP
11 lines
241 B
PHP
<?php
|
|
@define('CONST_LibDir', dirname(dirname(__FILE__)));
|
|
|
|
require_once(CONST_LibDir.'/init-cmd.php');
|
|
|
|
loadSettings(getcwd());
|
|
|
|
(new \Nominatim\Shell(getSetting('NOMINATIM_TOOL')))
|
|
->addParams('admin', '--check-database')
|
|
->run();
|