]> git.openstreetmap.org Git - nominatim.git/commitdiff
Moved settings-frontend to website/
authorK Rahul Reddy <k_rahul_reddy@outlook.com>
Fri, 19 Jun 2020 16:36:23 +0000 (22:06 +0530)
committerK Rahul Reddy <k_rahul_reddy@outlook.com>
Sat, 27 Jun 2020 05:15:53 +0000 (10:45 +0530)
cmake/website.tmpl
docs/admin/Import.md
lib/setup/SetupClass.php

index c5173956543b0b841ce5cbb28b58c6664557ac5b..8692280d41a4026f55095d0772c9de301e771696 100755 (executable)
@@ -1,3 +1,3 @@
 <?php
-require_once(dirname(dirname(__FILE__)).'/settings/settings-frontend.php');
+require_once(dirname(dirname(__FILE__)).'/website/settings-frontend.php');
 require_once(CONST_BasePath.'/@script_source@');
index 0820a2ff18b0f5c88e479cad43700da679912581..b3b5448c83d864e60ba01e2fd4f71b88858f9037 100644 (file)
@@ -197,7 +197,7 @@ Run this script to verify all required tables and indices got created successful
 
 ### Setting up the website
 
-Run the following command to set up the `settings/settings-frontend.php`.
+Run the following command to set up the `website/settings-frontend.php`.
 These settings are used in website/*.php files. You can use the website only after this 
 step is completed.
 
index 38776a12118e477f908b3801a545c4fdaf216cdd..16c4872982a0413d039c205153164a6510287ab7 100755 (executable)
@@ -695,17 +695,13 @@ class SetupFunctions
     }
 
     /**
-     * Setup settings_test.php in the build/settings directory from build/.env file
+     * Setup settings-frontend.php in the build/website directory
      *
      * @return null
      */
     public function setupWebsite()
     {
-        $rOutputFile = fopen(CONST_InstallPath.'/settings/settings-frontend.php', 'w');
-
-        // Currently using CONST_BasePath and CONST_InstallPath.
-        // Once dotenv is setup, getenv() can be used, or another
-        // alternate option is to build settings_test.php using cmake.
+        $rOutputFile = fopen(CONST_InstallPath.'/website/settings-frontend.php', 'w');
 
         fwrite($rOutputFile, "<?php
 @define('CONST_BasePath', '".CONST_BasePath."');
@@ -734,7 +730,7 @@ if (file_exists(getenv('NOMINATIM_SETTINGS'))) require_once(getenv('NOMINATIM_SE
 @define('CONST_Use_US_Tiger_Data', ".(CONST_Use_US_Tiger_Data ? 'true' : 'false').");
 @define('CONST_Website_BaseURL', '".CONST_Website_BaseURL."');
 ");
-        info(CONST_InstallPath.'/settings/settings-frontend.php has been set up successfully');
+        info(CONST_InstallPath.'/website/settings-frontend.php has been set up successfully');
     }
 
     private function removeFlatnodeFile()