-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.php
More file actions
22 lines (18 loc) · 802 Bytes
/
config.example.php
File metadata and controls
22 lines (18 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
// Configuration for the Kindness Scanner
// Uncomment as desired.
/* The user-displayed title. */
// $ks_config['title'] = 'Kindness Scanner';
/* The root url for the project.
How should the web server be accessed by, e.g., scanned cards? */
$ks_config['root_url'] = 'https://my.example.com/path/to/KindnessScanner';
/* PostgreSQL database configuration */
$ks_config['db_host'] = 'localhost';
$ks_config['db_port'] = 5432;
$ks_config['db_name'] = 'somedatabase';
$ks_config['db_user'] = 'someuser';
$ks_config['db_password'] = 'somepassword';
/* The project directory.
This should be automatically detected if the web directory is symbolically linked into the web server.
This directory must be readable by the web server. */
// $ks_config['project_dir'] = '/some/path/to/KindnessScanner';