false, // Database connection settings // See http://medoo.in/api/new for info "database" => [ "type" => "mysql", "name" => "terranquest", "server" => "localhost", "user" => "terranquest", "password" => "", "charset" => "utf8" ], // Name of the app. "site_title" => "TerranQuest Server", // Settings for connecting to the AccountHub server. "accounthub" => [ // URL for the API endpoint "api" => "http://localhost/accounthub/api/", // URL of the home page "home" => "http://localhost/accounthub/home.php", // API key "key" => "123" ], // Settings for Point of Interest server to get place data from // https://source.netsyms.com/Netsyms/PointsOfInterestAPI "poi" => [ "server" => "https://maps.netsyms.net/poi/", // Location categories/types to filter to with argument type=X "categories" => [ "AMENITY_LIBRARY", "AMENITY_POLICE", "AMENITY_PLAYGROUND", "AMENITY_PUBLICBUILDING", "AMENITY_TOWNHALL", "EDUCATION_COLLEGE", "EDUCATION_SCHOOL", "EDUCATION_UNIVERSITY", "POW_BAHAI", "POW_BUDDHIST", "POW_CHRISTIAN", "POW_HINDU", "POW_ISLAMIC", "POW_JAIN", "POW_JEWISH", "POW_SHINTO", "POW_SIKH", "POW_UNKOWN", "POI_PEAK1", "POI_PEAK", "POI_TOWERLOOKOUT", "TOURIST_CASTLE", "TOURIST_FOUNTAIN", "TOURIST_MEMORIAL", "TOURIST_MONUMENT", "TOURIST_RUINS", "TOURIST_WINDMILL", "WATER_TOWER" ] ], // List of required user permissions to access this app. "permissions" => [ ], // List of permissions required for API access. Remove to use the value of // "permissions" instead. "api_permissions" => [ ], // For supported values, see http://php.net/manual/en/timezones.php "timezone" => "America/Denver", // Language to use for localization. See langs folder to add a language. "language" => "en", // Shown in the footer of all the pages. "footer_text" => "", // Also shown in the footer, but with "Copyright " in front. "copyright" => "Netsyms Technologies", // Base URL for building links relative to the location of the app. // Only used when there's no good context for the path. // The default is almost definitely fine. "url" => "." ];