mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
* Added development info (read-me.txt)
* Created the configuration-sample.php file and removed the configuration.php (the later must be created only on every installation).
This commit is contained in:
parent
9ac22614a7
commit
1feb84270d
4 changed files with 44 additions and 21 deletions
21
src/configuration-sample.php
Normal file
21
src/configuration-sample.php
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
class SystemConfiguration {
|
||||||
|
// General Settings
|
||||||
|
public static $base_url = 'http://localhost/dev/external/easy_appointments/trunk/src/';
|
||||||
|
|
||||||
|
// Database Settings
|
||||||
|
public static $db_host = 'localhost';
|
||||||
|
public static $db_name = 'new_ea';
|
||||||
|
public static $db_username = 'root';
|
||||||
|
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';
|
||||||
|
}
|
||||||
|
|
||||||
|
/* End of file configuration.php */
|
||||||
|
/* Location: ./configuration.php */
|
|
@ -1,21 +0,0 @@
|
||||||
<?php
|
|
||||||
class SystemConfiguration {
|
|
||||||
// General Settings
|
|
||||||
public static $base_url = 'http://url-to-easyappointments-folder/';
|
|
||||||
|
|
||||||
// Database Settings
|
|
||||||
public static $db_host = 'localhost';
|
|
||||||
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 = '';
|
|
||||||
public static $google_client_id = '';
|
|
||||||
public static $google_client_secret = '';
|
|
||||||
public static $google_api_key = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
/* End of file configuration.php */
|
|
||||||
/* Location: ./configuration.php */
|
|
23
src/read-me.txt
Normal file
23
src/read-me.txt
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
EASY!APPOINTMENTS
|
||||||
|
=================================================================
|
||||||
|
Easy!Appointments is a highly customizable web application that
|
||||||
|
allows your customers to book appointments with you via the web.
|
||||||
|
Moreover, it provides the ability to sync your data with Google
|
||||||
|
Calendar so you can use them with other services. It is an open
|
||||||
|
source project and you can download and install it even for
|
||||||
|
commercial use. Easy!Appointments will run smoothly with your
|
||||||
|
existing website, because it can be installed in a single folder
|
||||||
|
of the server and of course, both sites can share the same database.
|
||||||
|
|
||||||
|
LICENSE
|
||||||
|
=================================================================
|
||||||
|
Easy!Appointments is licensed under the GPLv3 license. By using
|
||||||
|
the code of Easy!Appointments in any way you are agreeing to the
|
||||||
|
terms described in the following url:
|
||||||
|
|
||||||
|
>> http://www.gnu.org/copyleft/gpl.html
|
||||||
|
|
||||||
|
SETUP FOR DEVELOPMENT
|
||||||
|
=================================================================
|
||||||
|
For setting up the application for development you will need to
|
||||||
|
rename the "configuration-sample.php" file to "configuration.php".
|
Loading…
Reference in a new issue