fix logic and tests, update docker CI file

This commit is contained in:
root
2026-03-09 15:58:44 -04:00
parent 1cb3573d4b
commit 79e44fe037
188 changed files with 1776 additions and 524 deletions
+6 -2
View File
@@ -3,15 +3,19 @@ services:
build:
context: .
dockerfile: Dockerfile.ci
container_name: alrahma_ci_app
working_dir: /app
volumes:
- ${WORKSPACE:-.}:/app
- .:/app
environment:
APP_ENV: testing
APP_KEY: base64:testingKey123456789012345678901234567890=
APP_KEY: base64:testingKey123456789012345678901234567890=
DB_CONNECTION: sqlite
DB_DATABASE: /app/database/database.sqlite
DB_DATABASE: /app/database/database.sqlite
CACHE_DRIVER: array
QUEUE_CONNECTION: sync
SESSION_DRIVER: array
MAIL_MAILER: log
MAIL_MAILER: log
command: sh -lc "ls -la && test -f composer.json && composer install --no-interaction --prefer-dist --no-progress"