mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Update default config-sample.php values
This commit is contained in:
parent
29e5fce89e
commit
1b32f83818
1 changed files with 12 additions and 12 deletions
|
@ -24,30 +24,30 @@
|
|||
* If you are updating from version 1.0 you will have to create a new "config.php"
|
||||
* file because the old "configuration.php" is not used anymore.
|
||||
*/
|
||||
class Config {
|
||||
|
||||
class Config
|
||||
{
|
||||
// ------------------------------------------------------------------------
|
||||
// GENERAL SETTINGS
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
const BASE_URL = 'http://url-to-easyappointments-directory';
|
||||
const LANGUAGE = 'english';
|
||||
const DEBUG_MODE = FALSE;
|
||||
const BASE_URL = 'http://localhost';
|
||||
const LANGUAGE = 'english';
|
||||
const DEBUG_MODE = false;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// DATABASE SETTINGS
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
const DB_HOST = 'localhost';
|
||||
const DB_NAME = 'easyappointments';
|
||||
const DB_USERNAME = 'root';
|
||||
const DB_PASSWORD = 'root';
|
||||
const DB_HOST = 'mysql';
|
||||
const DB_NAME = 'easyappointments';
|
||||
const DB_USERNAME = 'user';
|
||||
const DB_PASSWORD = 'password';
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// GOOGLE CALENDAR SYNC
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
const GOOGLE_SYNC_FEATURE = FALSE; // Enter TRUE or FALSE
|
||||
const GOOGLE_CLIENT_ID = '';
|
||||
const GOOGLE_CLIENT_SECRET = '';
|
||||
const GOOGLE_SYNC_FEATURE = false; // Enter TRUE or FALSE
|
||||
const GOOGLE_CLIENT_ID = '';
|
||||
const GOOGLE_CLIENT_SECRET = '';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue