MaketRandevu/README.md

84 lines
3.9 KiB
Markdown
Raw Normal View History

2014-12-04 00:06:15 +02:00
Easy!Appointments
================
2017-03-17 10:47:54 +03:00
<img src="http://easyappointments.org/img/easyappointments-banner.png">
2014-12-04 00:06:15 +02:00
### Organize your business! Exploit human resources that can be used in other tasks more efficiently.
2015-11-12 00:10:52 +02:00
**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,
2014-12-04 00:06:15 +02:00
both sites can share the same database.
### Features
2017-05-18 22:57:07 +03:00
The project was designed to be flexible and reliable so as to be able to meet the needs of any
2016-01-26 12:56:45 +02:00
kind of enterprise. You can read the main features of the system below:
2014-12-04 00:06:15 +02:00
* Full customers and appointments management.
* Services and service providers organization.
* Workflow and booking rules.
2014-12-04 00:06:15 +02:00
* Google Calendar synchronization.
* Email notifications system.
2018-02-28 22:16:32 +03:00
* Standalone installation (like WordPress, Drupal, Joomla and other web systems).
* Translated user interface.
* User community support.
2014-12-04 00:06:15 +02:00
### Installation
2017-05-18 22:57:07 +03:00
Since Easy!Appointments is a web application, it runs on a web server and thus you will need to
2014-12-04 00:06:15 +02:00
perform the following steps in order to install the system on your server:
2018-02-28 22:16:32 +03:00
* Make sure that your server has Apache/Nginx, PHP and MySQL installed.
2014-12-04 00:06:15 +02:00
* Create a new database (or use an existing).
2014-12-04 00:19:02 +02:00
* Copy the "easyappointments" source folder on your server.
2018-02-28 22:16:32 +03:00
* Make sure that the "storage" directory is writable.
* Rename the "config-sample.php" file to "config.php" and set your server properties.
2014-12-04 00:06:15 +02:00
* Open your browser on the Easy!Appointments URL and follow the installation guide.
* That's it! You can now use Easy!Appointments at your will.
You will find the latest release at [easyappointments.org](http://easyappointments.org).
If you have problems installing or configuring the application visit the
[official support group](https://groups.google.com/forum/#!forum/easy-appointments).
You can also report problems on the [issues page](https://github.com/alextselegidis/easyappointments/issues)
and help the development progress.
2014-12-04 00:06:15 +02:00
2017-04-21 13:13:03 +03:00
### Docker
To start Easy!Appointments using Docker in development configuration, with source files mounted into container, copy the `docker/.env.example` file to `docker/.env` and run:
2017-04-21 13:13:03 +03:00
```
docker-compose up
```
inside the `docker` directory.
**Important: once the containers are set up, the `src/config.php` file will be overwritten. In some host environments you might need to manually change the BASE_URL value, if Docker cannot map the container to `http://localhost`.
2017-04-21 13:13:03 +03:00
Production deployment can be made by changing required values in .env file (DB_PASSWORD, APP_URL, APP_PORT) and running:
```
docker-compose -f docker-compose.prod.yml up -d
```
Database data will be stored in named volume `easyappointments_easyappointments-data`, and app storage (logs, cache, uploads) in `easyappointments_easyappointments-storage`.
To find where exactly they are stored, you can run
```
docker volume inspect easyappointments_easyappointments-storage
```
Production containers will automatically be restarted in case of crash / server reboot. For more info, take a look into `docker-compose.prod.yml` file.
2017-04-21 13:13:03 +03:00
2014-12-04 00:06:15 +02:00
### User Feedback
2017-05-18 22:57:07 +03:00
Whether it is new ideas or defects, your feedback is highly appreciated and will be taken into
consideration for the following releases of the project. Share your experience and discuss your
thoughts with other users through communities. Create issues with suggestions on new features or
bug reports.
2014-12-04 00:06:15 +02:00
### Translate Easy!Appointments
2017-05-18 22:57:07 +03:00
As of version 1.0 Easy!Appointments supports translated user interface. If you want to contribute to the
2018-10-19 20:49:51 +03:00
translation process read the [get involved](https://github.com/alextselegidis/easyappointments/blob/master/doc/get-involved.md)
page for additional information.