24 lines
624 B
YAML
24 lines
624 B
YAML
parameters:
|
|
# Adds a fallback DATABASE_URL if the env var is not set.
|
|
# This allows you to run cache:warmup even if your
|
|
# environment variables are not available yet.
|
|
# You should not need to change this value.
|
|
env(DATABASE_URL): ''
|
|
|
|
doctrine:
|
|
dbal:
|
|
driver: 'pdo_pgsql'
|
|
url: '%env(resolve:DATABASE_URL)%'
|
|
|
|
orm:
|
|
enable_native_lazy_objects: true
|
|
naming_strategy: doctrine.orm.naming_strategy.underscore
|
|
auto_mapping: true
|
|
mappings:
|
|
App:
|
|
is_bundle: false
|
|
type: attribute
|
|
dir: '%kernel.project_dir%/src/Entity'
|
|
prefix: 'App\Entity'
|
|
alias: App
|