Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

Commit b89c21b

Browse files
committed
cleanup config
1 parent 707388d commit b89c21b

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
config.php

config.php

-9
This file was deleted.

config.sample.php

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
/*
4+
Example configuration... all fields optional except dataset name
5+
6+
$args = array(
7+
'name' => null,
8+
'username' => 'root',
9+
'password' => 'root',
10+
'server' => 'localhost',
11+
'port' => 3306,
12+
'type' => 'mysql',
13+
'table_blacklist' => array(),
14+
'column_blacklist' => array(),
15+
);
16+
17+
register_db_api( 'dataset-name', $args );
18+
19+
*/

0 commit comments

Comments
 (0)