disable old route

This commit is contained in:
Serreau Jovann
2025-07-16 16:51:01 +02:00
parent 77285b7e56
commit 1880151543
3 changed files with 7 additions and 6 deletions

View File

@@ -1,6 +0,0 @@
# define your env variables for the test env here
KERNEL_CLASS='App\Kernel'
APP_SECRET='$ecretf0rt3st'
APP_ENV=test
DATABASE_URL="postgresql://symfony_user:ChangeMeInProd!@127.0.0.1:5432/app_db_test?serverVersion=16&charset=utf8"
XDEBUG_MODE=coverage

1
.gitignore vendored
View File

@@ -3,6 +3,7 @@
/.env.local
/.env.local.php
/.env.*.local
/.env.*.test
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/

View File

@@ -21,6 +21,12 @@ services:
before_script:
- echo "Starting environment setup..."
- echo "Creating .env.local file..."
- echo "APP_ENV=test" > .env.test
- echo "KERNEL_CLASS=App\Kernel" > .env.test
- echo "APP_SECRET='$ecretf0rt3st'" > .env.test
- echo 'DATABASE_URL="postgresql://symfony_user:ChangeMeInProd!@postgres:5432/app_db_test?serverVersion=16&charset=utf8"' > .env.test
- echo "XDEBUG_MODE=coverage" > .env.test
- echo ".env.local created successfully."
install_dependencies:
stage: install