forked from kamba4/sunders
containerized the app
This commit is contained in:
parent
51b982d43b
commit
070ccc9a19
14 changed files with 118204 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
error_reporting(0);
|
||||
// Convert the content of the symbology JSON file to HTML.
|
||||
function addListSymbology($jsonPath, $i18n, $i18nDefault) {
|
||||
global $pathToWebFolder;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
error_reporting(0);
|
||||
include $pathToWebFolder.'config.php';
|
||||
|
||||
|
||||
define('MAX_POINTS_FOR_QUICKHULL', 3000);
|
||||
|
||||
class OsmPoint {
|
||||
|
|
19
www/sunders/config.php
Normal file
19
www/sunders/config.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
define('DEFAULT_ZOOM', 15);
|
||||
define('DEFAULT_LAT', 52.37672572);
|
||||
define('DEFAULT_LON', 9.73787785);
|
||||
define('DEFAULT_LANGUAGE', 'en');
|
||||
define('DEFAULT_PIE', 'country');
|
||||
define('DEFAULT_TIME', 'single');
|
||||
|
||||
define('MYSQL_HOST', getenv('MYSQL_HOST'));
|
||||
define('MYSQL_DB', getenv('MYSQL_DB'));
|
||||
define('MYSQL_USER', getenv('MYSQL_USER'));
|
||||
define('MYSQL_PASSWD', getenv('MYSQL_PASSWD'));
|
||||
|
||||
|
||||
|
||||
define('USE_STATISTICS', false);
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue