59 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Bash
		
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Bash
		
	
	
| # 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=e95c7f17da15ce1b03d77ad655379c34
 | |
| ###< 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://root:root@127.0.0.1:3336/dimio?serverVersion=8.0.32&charset=utf8mb4"
 | |
| DATABASE_URL="mysql://root:root@ogcore-database:3306/ogcore?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
 | |
| OG_1_DATABASE_URL="mysql://root:root@ogcore-database:3306/ogcore_old_og?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
 | |
| 
 | |
| #DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
 | |
| ###< doctrine/doctrine-bundle ###
 | |
| 
 | |
| ###> nelmio/cors-bundle ###
 | |
| CORS_ALLOW_ORIGIN='*'
 | |
| ###< nelmio/cors-bundle ###
 | |
| 
 | |
| ###> lexik/jwt-authentication-bundle ###
 | |
| JWT_SECRET_KEY=%kernel.project_dir%/config/jwt/private.pem
 | |
| JWT_PUBLIC_KEY=%kernel.project_dir%/config/jwt/public.pem
 | |
| JWT_PASSPHRASE=8b9154df37ffa91ef9186ce095324e39e50ff3b023bb1ed34383abd019ba4515
 | |
| ###< lexik/jwt-authentication-bundle ###
 | |
| 
 | |
| OGBOOT_API_URL=http://localhost:8085
 | |
| OGDHCP_API_URL=http://localhost:8085
 | |
| 
 | |
| ###> UDS ###
 | |
| UDS_AUTH_LOGIN="Usuarios locales"
 | |
| UDS_AUTH_USERNAME="natiqindel"
 | |
| UDS_AUTH_PASSWORD="correct horse battery staple"
 | |
| UDS_URL=https://localhost:8087/uds/rest/
 | |
| ###< UDS ###
 | |
| 
 | |
| ###> symfony/mercure-bundle ###
 | |
| MERCURE_URL=http://ogcore-mercure:3000/.well-known/mercure
 | |
| MERCURE_PUBLIC_URL=http://ogcore-mercure:3000/.well-known/mercure
 | |
| MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!"
 | |
| ###< symfony/mercure-bundle ###
 |