false, // Database connection settings // See http://medoo.in/api/new for info "database" => [ "type" => "mysql", "name" => "machinemanager", "server" => "localhost", "user" => "app", "password" => "", "charset" => "utf8" ], "apis" => [ // Get a token by going to Settings->Advanced Settings->API Tokens->Add Token // Leave token empty to use internal clients table (not recommended) // Feel free to add your own Clients class that uses whatever data source you have, see lib/Clients.lib.php "invoiceninja" => [ "url" => "https://app.invoiceninja.com/api/v1", "token" => "" ] ], // Name of the app. "site_title" => "MachineManager", "branding" => [ "machineidnumber" => "Netsyms machine ID number", "shortmachineid" => "Machine ID Number", "publictitle" => "Machine Lookup", "trackinglink" => "https://qr.ntsm.io/?t=mid&q={{id}}" ], // 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" ], // 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", "datetime_format" => "M j Y g:ia", // 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" => "." ];