feat(filters): add filters for the main page

This commit is contained in:
2025-10-06 13:49:27 +03:00
parent bfc6ba496b
commit e7e045b695
65 changed files with 1172 additions and 525 deletions

View File

@@ -14,6 +14,12 @@ services:
resources:
limits:
memory: 512M
healthcheck:
test: [ "CMD", "curl" ,"-f", "http://localhost/index.php?route=extension/tgshop/handle&api_action=health" ]
interval: 10s
timeout: 5s
retries: 5
start_period: 5s
environment:
- WEB_DOCUMENT_ROOT=/web/upload
- PHP_DISPLAY_ERRORS=1
@@ -25,6 +31,8 @@ services:
- PHP_IDE_CONFIG=serverName=orbstack
- php.session.gc_maxlifetime=28800
- php.session.cookie_lifetime=0
depends_on:
- mysql
mysql:
image: mariadb:10.2.7
@@ -34,7 +42,7 @@ services:
- MYSQL_ROOT_PASSWORD=secret
- MYSQL_DATABASE=ocstore3
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost", "-u", "root", "-psecret" ]
timeout: 20s
retries: 10
ports: