forked from GroundApps/ShoppingList_Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
39 lines (37 loc) · 1.73 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
28
29
30
31
32
33
34
35
36
37
38
39
<?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 = [
'host' => "localhost",
'db' => "your_database_name",
'user' => "your_mysql_user",
'password' => "your_mysql_password",
];
/*##########################################################
# if you put your config into a new file config.local.php #
# instead of changing the values above then in case of an #
# update of config.php you will not lose all your settings #
############################################################*/
@include('config.local.php');
?>