disable old route
This commit is contained in:
@@ -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
1
.gitignore
vendored
@@ -3,6 +3,7 @@
|
||||
/.env.local
|
||||
/.env.local.php
|
||||
/.env.*.local
|
||||
/.env.*.test
|
||||
/config/secrets/prod/prod.decrypt.private.php
|
||||
/public/bundles/
|
||||
/var/
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user