forked from Chielus/InfoScreen
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.example.php
More file actions
66 lines (57 loc) · 2.1 KB
/
config.example.php
File metadata and controls
66 lines (57 loc) · 2.1 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| Your base URL with a trailing slash. If this is not set then we will
| guess the protocol, domain and path to your installation.
*/
$config["base_url"] = "";
/*
|--------------------------------------------------------------------------
| Infoscreen settings
|--------------------------------------------------------------------------
|
| The alias of the default infoscreen when no alias is given. And the
| folder name of the template to use.
*/
$config["default_infoscreen"] = "demo";
$config["default_template"] = "default";
/*
|--------------------------------------------------------------------------
| Turtle settings
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| turtles/ folder. Use a relative path.
*/
$config["turtle_path"] = "";
/*
| -------------------------------------------------------------------
| Database connectivity settings
| -------------------------------------------------------------------
| The database settings needed to access your database.
|
| ["hostname"] The hostname of your database server.
| ["username"] The username used to connect to the database
| ["password"] The password used to connect to the database
| ["database"] The name of the database you want to connect to
| ["port"] The port used to connect to the database
*/
$config["database"]["hostname"] = "localhost";
$config["database"]["username"] = "flatturtle";
$config["database"]["password"] = "password";
$config["database"]["database"] = "flatturtle";
$config["database"]["port"] = "";
/*
|--------------------------------------------------------------------------
| Google Analytics
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to use Google Analytics
| Insert the *whole* JS line in one single line for this to work
*/
$config["google_analytics"] = "";
// EOF
?>