Add Easy!Appointments template (#608)

* Initial plan

* Add Easyappointments template with docker-compose, template.toml, and meta.json entry

Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com>

* Update blueprints/easyappointments/template.toml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update template.toml

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Copilot
2025-12-19 18:16:25 -06:00
committed by GitHub
parent ee0e6fba92
commit 9501d5f974
5 changed files with 60 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
node_modules
package-lock.json
meta.json.backup.*

View File

@@ -0,0 +1,29 @@
version: "3.8"
services:
easyappointments:
image: alextselegidis/easyappointments:1.5.0
restart: unless-stopped
environment:
- BASE_URL=http://${DOMAIN}
- DB_HOST=mysql
- DB_NAME=easyappointments
- DB_USERNAME=root
- DB_PASSWORD=${DB_PASSWORD}
volumes:
- easyappointments:/var/www/html
depends_on:
- mysql
mysql:
image: mysql:8.0
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=${DB_PASSWORD}
- MYSQL_DATABASE=easyappointments
volumes:
- mysql:/var/lib/mysql
volumes:
easyappointments:
mysql:

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@@ -0,0 +1,13 @@
[variables]
main_domain = "${domain}"
db_password = "${password:32}"
[config]
[[config.domains]]
serviceName = "easyappointments"
port = 80
host = "${main_domain}"
[config.env]
DOMAIN = "${main_domain}"
DB_PASSWORD = "${db_password}"

View File

@@ -2033,6 +2033,23 @@
"simple"
]
},
{
"id": "easyappointments",
"name": "Easy!Appointments",
"version": "1.5.0",
"description": "Easy!Appointments is a highly customizable web application that allows customers to book appointments with you via a sophisticated web interface.",
"logo": "logo.png",
"links": {
"github": "https://github.com/alextselegidis/easyappointments",
"website": "https://easyappointments.org",
"docs": "https://easyappointments.org/docs"
},
"tags": [
"scheduling",
"appointments",
"booking"
]
},
{
"id": "elastic-search",
"name": "Elasticsearch",