terrarium-web/config/services.yaml

36 lines
1.7 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/configuration.html#application-related-configuration
parameters:
motion_snapshots_directory: "motion/snapshots"
camera1_url: "%env(CAMERA1_URL)%"
temperature_trigger_min: "%env(TEMPERATURE_TRIGGER_MIN)%"
temperature_trigger_max: "%env(TEMPERATURE_TRIGGER_MAX)%"
hygrometry_trigger_min: "%env(HYGROMETRY_TRIGGER_MIN)%"
hygrometry_trigger_max: "%env(HYGROMETRY_TRIGGER_MAX)%"
light_on_at: "%env(LIGHT_ON_AT)%"
light_off_at: "%env(LIGHT_OFF_AT)%"
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,Entity,Migrations,Tests,Kernel.php}'
# controllers are imported separately to make sure services can be injected
# as action arguments even if you don't extend any base controller class
App\Controller\:
resource: '../src/Controller'
tags: ['controller.service_arguments']
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones