X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/3f06d9d3ba52fe610987096ba41ed986a059dca7..deca74bc3aace543d425670f2d4af92c8e564220:/vagrant/install-on-centos-7.sh diff --git a/vagrant/install-on-centos-7.sh b/vagrant/install-on-centos-7.sh index 7e023cbe..02c7d943 100755 --- a/vagrant/install-on-centos-7.sh +++ b/vagrant/install-on-centos-7.sh @@ -28,9 +28,10 @@ # additional packages: sudo yum install -y python-pip python-Levenshtein python-psycopg2 \ - php-phpunit-PHPUnit + python-numpy php-phpunit-PHPUnit pip install --user --upgrade pip setuptools lettuce==0.2.18 six==1.9 \ haversine Shapely pytidylib + sudo pear install PHP_CodeSniffer # # System Configuration @@ -103,6 +104,7 @@ sudo tee /etc/httpd/conf.d/nominatim.conf << EOFAPACHECONF #DOCS: Options FollowSymLinks MultiViews AddType text/html .php + DirectoryIndex search.php Require all granted @@ -142,13 +144,20 @@ sudo sed -i 's:#.*::' /etc/httpd/conf.d/nominatim.conf #DOCS: if [ "x$1" == "xyes" ]; then #DOCS: cd $USERHOME - git clone --recursive git://github.com/twain47/Nominatim.git + git clone --recursive git://github.com/openstreetmap/Nominatim.git #DOCS: cd Nominatim else #DOCS: cd $USERHOME #DOCS: fi #DOCS: +# When installing the latest source from github, you also need to +# download the country grid: + +if [ ! -f data/country_osm_grid.sql.gz ]; then #DOCS: + wget -O data/country_osm_grid.sql.gz http://www.nominatim.org/data/country_grid.sql.gz +fi #DOCS: + # The code must be built in a separate directory. Create this directory, # then configure and build Nominatim in there: