mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-28 10:18:57 +00:00
Add Shopware 6 example (#61)
This commit is contained in:
27
shopware6/config/services.yaml
Normal file
27
shopware6/config/services.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
# 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:
|
||||
shopware.store.frw: '1'
|
||||
default_cdn_strategy: 'physical_filename'
|
||||
shopware.cdn.strategy: '%env(default:default_cdn_strategy:SHOPWARE_CDN_STRATEGY_DEFAULT)%'
|
||||
env(OPENSEARCH_URL): 'http://localhost:9200'
|
||||
|
||||
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.
|
||||
# Binding arguments by name or type
|
||||
# https://symfony.com/doc/current/service_container.html#binding-arguments-by-name-or-type
|
||||
#bind:
|
||||
# 'bool $isDebug': '%kernel.debug%'
|
||||
|
||||
App\:
|
||||
resource: '../src/'
|
||||
exclude:
|
||||
- '../src/DependencyInjection/'
|
||||
- '../src/Entity/'
|
||||
- '../src/Kernel.php'
|
||||
Reference in New Issue
Block a user