-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-private.sample.php
40 lines (34 loc) · 1.46 KB
/
config-private.sample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
// In this file, save any app settings that you do NOT want to be saved
// to your repository. These are settings that you don't want shared
// with others, such as public/private keys, database connection details, etc.
// Make sure to update the sample file for a template of keys to fill out
// on your own website!! That way, when you set up a new instance of your
// site, you know which keys need to be filled out. :)
// Some examples:
// $app->recaptchaPrivateKey = "[key here]";
// $app->recaptchaPublicKey = "[key here]";
// $app->mapsAPIKey = "[key here]";
/*
// Uncomment these lines if you want there to be a database connection available through $app->db
try {
$host = '127.0.0.1';
$db = 'db-name';
$user = 'username';
$pass = 'password';
$charset = 'utf8';
$dsn = "mysql:host=$host;dbname=$db;charset=$charset";
$opt = [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
PDO::ATTR_EMULATE_PREPARES => false,
];
$app->db = new PDO($dsn, $user, $pass, $opt);
}
catch (Exception $e) {
echo "DB connection details are invalid: " . $e->getMessage();
}*/
// shouldShowErrorOnExceptionThrown: whether or not to show the error page on an exception
// being thrown from a controller. You probably want this set to true while developing,
// and you probably want this set to false on a production server.
$app->shouldShowErrorOnExceptionThrown = false;