Private
Public Access
1
0

new: usr: Add opportunity to use profile picture. #4

This commit is contained in:
2026-04-13 15:50:28 +02:00
parent 98f6e8cb6e
commit 0c0b8ae920
23 changed files with 1952 additions and 212 deletions

View File

@@ -11,7 +11,7 @@ services:
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
public: false # Allows optimizing the container by removing unused services; this also means
# fetching services directly from the container via $container->get() won't work.
# The best practice is to be explicit about your dependencies anyway.
# The best practice is to be explicit about your dependencies anyway.
# makes classes in src/ available to be used as services
# this creates a service per class whose id is the fully-qualified class name
@@ -24,3 +24,13 @@ services:
App\Controller\:
resource: '../src/Controller'
tags: [ 'controller.service_arguments' ]
Aws\S3\S3Client:
arguments:
- version: 'latest'
region: 'us-east-1'
endpoint: '%env(MINIO_ENDPOINT)%'
use_path_style_endpoint: true
credentials:
key: '%env(MINIO_ROOT_USER)%'
secret: '%env(MINIO_ROOT_PASSWORD)%'