-
Notifications
You must be signed in to change notification settings - Fork 23
/
config.php
28 lines (26 loc) · 1.21 KB
/
config.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
<?php
/*##########################################################
# Last Author: beli3ver
# Last edit: 2015-08-31 03:30pm
############################################################*/
/*##########################################################
# Auth Key / Password, to get acces to the database #
############################################################*/
$authKey = '';
/*##########################################################
# Branch: stable, testing, experimental #
############################################################*/
$branch = "stable";
/*##########################################################
# Database: MySQL, SQLite #
############################################################*/
$dataBase = "SQLite";
/*##########################################################
# SQLite Config #
############################################################*/
$SQLiteConfig = array('file' => "shoppinglist.sqlite");
/*##########################################################
# MySQL Config #
############################################################*/
$MySQLConfig = array('host' => "host",'db' => "db",'user' => "user",'password' => "password",);
?>