mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 17:42:21 +03:00
* Cleared the configuration-sample.php file.
This commit is contained in:
parent
1feb84270d
commit
c1cca3c8fd
1 changed files with 8 additions and 8 deletions
|
@ -1,20 +1,20 @@
|
|||
<?php
|
||||
class SystemConfiguration {
|
||||
// General Settings
|
||||
public static $base_url = 'http://localhost/dev/external/easy_appointments/trunk/src/';
|
||||
public static $base_url = 'http://url-to-easyappointments-folder/';
|
||||
|
||||
// Database Settings
|
||||
public static $db_host = 'localhost';
|
||||
public static $db_name = 'new_ea';
|
||||
public static $db_username = 'root';
|
||||
public static $db_name = '';
|
||||
public static $db_username = '';
|
||||
public static $db_password = '';
|
||||
|
||||
// Google Calendar API Settings
|
||||
public static $google_sync_feature = TRUE; // Enter TRUE or FALSE;
|
||||
public static $google_product_name = 'Easy!Appointments';
|
||||
public static $google_client_id = '396094740598-l9ohhdgs0hr6qi89628p3chf9lm59mkc.apps.googleusercontent.com';
|
||||
public static $google_client_secret = '3kKEgx3mgxfFInrWf3jTUn4D';
|
||||
public static $google_api_key = 'AIzaSyCLMin3-ePz8xShJ7klSduo7iChDV7ldc0';
|
||||
public static $google_sync_feature = FALSE; // Enter TRUE or FALSE;
|
||||
public static $google_product_name = '';
|
||||
public static $google_client_id = '';
|
||||
public static $google_client_secret = '';
|
||||
public static $google_api_key = '';
|
||||
}
|
||||
|
||||
/* End of file configuration.php */
|
||||
|
|
Loading…
Reference in a new issue