BinStack/settings.template.php

47 lines
1.3 KiB
PHP
Raw Normal View History

2017-04-24 17:13:08 -06:00
<?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2017-04-24 17:13:08 -06:00
// Whether to show debugging data in output.
// DO NOT SET TO TRUE IN PRODUCTION!!!
define("DEBUG", false);
// Database connection settings
// See http://medoo.in/api/new for info
define("DB_TYPE", "mysql");
define("DB_NAME", "app");
define("DB_SERVER", "localhost");
define("DB_USER", "app");
define("DB_PASS", "");
define("DB_CHARSET", "utf8");
// Name of the app.
2017-04-24 17:13:08 -06:00
define("SITE_TITLE", "Web App Template");
2018-04-15 19:28:34 -06:00
// URL of the AccountHub API endpoint
define("PORTAL_API", "http://localhost/accounthub/api/");
2018-04-15 19:28:34 -06:00
// URL of the AccountHub home page
define("PORTAL_URL", "http://localhost/accounthub/home.php");
2018-04-15 19:28:34 -06:00
// AccountHub API Key
define("PORTAL_KEY", "123");
2017-04-24 17:13:08 -06:00
// For supported values, see http://php.net/manual/en/timezones.php
define("TIMEZONE", "America/Denver");
// Base URL for site links.
2018-04-15 19:28:34 -06:00
define('URL', '.');
2017-04-24 17:13:08 -06:00
2018-04-15 19:28:34 -06:00
// Use Captcheck on login screen
// https://captcheck.netsyms.com
define("CAPTCHA_ENABLED", FALSE);
define('CAPTCHA_SERVER', 'https://captcheck.netsyms.com');
2017-04-24 17:13:08 -06:00
// See lang folder for language options
define('LANGUAGE', "en_us");
2017-12-16 13:48:24 -07:00
define("FOOTER_TEXT", "");
2017-12-16 13:48:24 -07:00
define("COPYRIGHT_NAME", "Netsyms Technologies");