containerized the app

This commit is contained in:
aso 2025-10-06 21:13:58 +02:00
commit 070ccc9a19
14 changed files with 118204 additions and 4 deletions

15
utils/config.php Normal file
View file

@ -0,0 +1,15 @@
<?php
define('REPLICATE_URL', 'https://planet.openstreetmap.org/replication/minute');
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);
define('WEBSERVICE_COUNTRY_URL', 'http://api.geonames.org/countryCode');
define('WEBSERVICE_USER', 'xxxxxxxx');
define('MAX_WEBREQUESTS_PER_HOUR', 1000);
?>