-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update application structure to Symfony 5.4
- Loading branch information
Showing
1,586 changed files
with
6,968 additions
and
6,388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# In all environments, the following files are loaded if they exist, | ||
# the latter taking precedence over the former: | ||
# | ||
# * .env contains default values for the environment variables needed by the app | ||
# * .env.local uncommitted file with local overrides | ||
# * .env.$APP_ENV committed environment-specific defaults | ||
# * .env.$APP_ENV.local uncommitted environment-specific overrides | ||
# | ||
# Real environment variables win over .env files. | ||
# | ||
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES. | ||
# https://symfony.com/doc/current/configuration/secrets.html | ||
# | ||
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2). | ||
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration | ||
|
||
###> symfony/framework-bundle ### | ||
APP_ENV=dev | ||
APP_SECRET=09aea01942e85d3bbe0ecf727bfc3bd5 | ||
###< symfony/framework-bundle ### | ||
|
||
###> doctrine/doctrine-bundle ### | ||
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url | ||
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml | ||
# | ||
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db" | ||
# DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=8&charset=utf8mb4" | ||
DATABASE_URL="postgresql://app:[email protected]:5432/app?serverVersion=14&charset=utf8" | ||
###< doctrine/doctrine-bundle ### | ||
|
||
###> symfony/lock ### | ||
# Choose one of the stores below | ||
# postgresql+advisory://db_user:db_password@localhost/db_name | ||
LOCK_DSN=flock | ||
###< symfony/lock ### | ||
|
||
###> symfony/mailer ### | ||
MAILER_DSN=null://null | ||
###< symfony/mailer ### | ||
|
||
###> snc/redis-bundle ### | ||
# passwords that contain special characters (@, %, :, +) must be urlencoded | ||
REDIS_URL=redis://localhost | ||
###< snc/redis-bundle ### | ||
|
||
###> nelmio/cors-bundle ### | ||
CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$' | ||
###< nelmio/cors-bundle ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,10 @@ | ||
/web/bundles | ||
/web/css | ||
/web/js | ||
/web/composer | ||
/web/images | ||
/web/uploads/users/* | ||
/web/media/cache | ||
/web/build.js | ||
/var/password.dat | ||
/var/password.json | ||
/password.json | ||
behat.yml | ||
/.web-server-pid | ||
/app/config/parameters.yml | ||
/build/ | ||
.idea | ||
/phpunit.xml | ||
/var/* | ||
/var/cache/* | ||
!var/cache/.gitkeep | ||
!var/hook/.gitkeep | ||
!var/hook/* | ||
/var/logs/* | ||
!var/logs/.gitkeep | ||
!/var/sessions | ||
/var/sessions/* | ||
!var/sessions/.gitkeep | ||
!var/SymfonyRequirements.php | ||
|
||
###> symfony/framework-bundle ### | ||
/.env.local | ||
/.env.local.php | ||
/.env.*.local | ||
/config/secrets/prod/prod.decrypt.private.php | ||
/public/bundles/ | ||
/var/ | ||
/vendor/ | ||
/web/bundles/ | ||
/var/bin/ | ||
###< symfony/framework-bundle ### |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.