Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit f051cb8

Browse files
committed
remove user management in favour of Keycloak + oauth2-proxy
1 parent 21f15ab commit f051cb8

File tree

102 files changed

+39
-5160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+39
-5160
lines changed

.env

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@ DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&ch
3434
###> symfony/mailer ###
3535
MAILER_DSN=null://null
3636
###< symfony/mailer ###
37-
38-
###> nucleos/user-bundle ###
39-
MAIL_SENDER=no-reply@localhost
40-
###< nucleos/user-bundle ###
41-
4237
###> symfony/lock ###
4338
# Choose one of the stores below
4439
# postgresql+advisory://db_user:db_password@localhost/db_name

assets/translator.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

bin/console

Lines changed: 0 additions & 1 deletion
This file was deleted.

bin/console

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
// Bootstraps the Symfony console application
5+
6+
use App\Kernel;
7+
use Symfony\Bundle\FrameworkBundle\Console\Application;
8+
9+
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
10+
11+
return function (array $context) {
12+
$kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
13+
14+
return new Application($kernel);
15+
};

bin/phpunit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
require dirname(__DIR__).'/vendor/phpunit/phpunit/phpunit';

bin/translations.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

build.php

Lines changed: 0 additions & 26 deletions
This file was deleted.

build/BuildPackageCommand.php

Lines changed: 0 additions & 133 deletions
This file was deleted.

build/GenerateVendorDocCommand.php

Lines changed: 0 additions & 123 deletions
This file was deleted.

0 commit comments

Comments
 (0)