false, // Database connection settings // See http://medoo.in/api/new for info "database" => [ "type" => "mysql", "name" => "campportal", "server" => "localhost", "user" => "", "password" => "", "charset" => "utf8" ], // Name of the app. "site_title" => "Camp Portal", // Set to true to disable registration. "disable_registration" => false, "camp_days" => [ "Mo" => "Monday", "Tu" => "Tuesday", "We" => "Wednesday" ], "prices" => [ "camp" => 50.0, "tshirt" => 10.0, "adult_volunteer_daily_discount" => 10.0, "add_stripe_fees" => true, // Set to false to make shirts always free, set to a number to make them // free for people who work at least that many days "youth_tshirt" => false, "adult_tshirt" => 3, // Set whether adults get free shirts when they're not bringing Cub Scouts, // regardless of how many days they volunteer "alone_adult_free_tshirt" => true ], // Stripe keys for payment processing "stripe" => [ "pubkey" => "", "seckey" => "" ], // 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" ], "email" => [ "host" => "", "auth" => true, "secure" => "tls", "port" => 587, "user" => "", "password" => "", "fromaddress" => "", "fromname" => "", "notification_to" => "" ], // For supported values, see http://php.net/manual/en/timezones.php "timezone" => "America/Denver", // Use Captcheck on login screen to slow down bots // https://captcheck.netsyms.com "captcha" => [ "enabled" => false, "server" => "https://captcheck.netsyms.com" ], // 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" => "." ];