webcron/config/services.yaml
Jeroen De Meerleer 121baa44e6
Added pidfile parameter and refactored DaemonCommand
- Introduced a new 'pidfile' parameter in the services configuration
- Refactored DaemonCommand to use ContainerBagInterface instead of KernelInterface for better flexibility
- Updated file operations in DaemonCommand to use the newly introduced 'pidfile' parameter
- Added a new HealthCommand class with functionality to check the health of the application
- Removed redundant health check logic from SiteController, now using HealthCommand for this purpose
- Enhanced DaemonHelpers service by adding constructor dependencies and integrating it with ParameterBagInterface and ManagerRegistry
2024-12-13 11:29:57 +01:00

30 lines
1.2 KiB
YAML

# This file is the entry point to configure your own services.
# Files in the packages/ subdirectory configure your dependencies.
# Put parameters here that don't need to change on each machine where the app is deployed
# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration
parameters:
pidfile: '%kernel.cache_dir%/webcron.pid'
enabled_locales:
en: 'English'
nl: 'Nederlands'
leet: 'L33tsp34k'
services:
# default configuration for services in *this* file
_defaults:
autowire: true # Automatically injects dependencies in your services.
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
# makes classes in src/ available to be used as services
# this creates a service per class whose id is the fully-qualified class name
App\:
resource: '../src/'
exclude:
- '../src/DependencyInjection/'
- '../src/Entity/'
- '../src/Kernel.php'
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones