From c47889eca2015b8a6238600f06c882f85d01b3da Mon Sep 17 00:00:00 2001 From: Anton Sarukhanov <code@ant.sr> Date: Wed, 15 Jul 2015 22:29:07 -0400 Subject: [PATCH] example config --- config.php.dist | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 config.php.dist diff --git a/config.php.dist b/config.php.dist new file mode 100644 index 0000000..01b6443 --- /dev/null +++ b/config.php.dist @@ -0,0 +1,31 @@ +<?php +/* + Configure app settings here. + + Example values below. + + Change them, and rename this file to 'config.php'. +*/ + +$cfg = array( + "mysql" => array( + "hostname" => "localhost", + "database" => "busmap", + "username" => "busmap", + "password" => "potato", + ), + "agency" => array( + "shortname" => "examplebusco", + "name" => "Example Bus Company", + "description" => "Real-time animated map of the EBC bus service.", + "attribution" => 'Map data © <a href="http://osm.org/copyright">OSM contributors</a>', + "errorTileUrl" => "http://example.com/generic/tile-blank-black.png", + "busIconUrl" => "http://example.com/img/bus.png", + "tileset" => "examplebusco-black", + "tileSubdomains" => ['a', 'b', 'c', 'd', 'e'], + "tileUrl" => "http://{s}.example.com/tiles/{tileset}/{z}/{x}/{y}.png", + "hideRoutes" => ['connect', 'kearney', 'penn', 'pennexpr'], + "staleBusTime" => 120, + ), +); +?> -- GitLab