.env 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # In all environments, the following files are loaded if they exist,
  2. # the latter taking precedence over the former:
  3. #
  4. # * .env contains default values for the environment variables needed by the app
  5. # * .env.local uncommitted file with local overrides
  6. # * .env.$APP_ENV committed environment-specific defaults
  7. # * .env.$APP_ENV.local uncommitted environment-specific overrides
  8. #
  9. # Real environment variables win over .env files.
  10. #
  11. # DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
  12. #
  13. # Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
  14. # https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
  15. ###> symfony/framework-bundle ###
  16. APP_DEBUG=0
  17. APP_SECRET=6a76497c8658bb23e2236f97a2627df3
  18. ###< symfony/framework-bundle ###
  19. ###> doctrine/doctrine-bundle ###
  20. # => defined in the .env.<environment> files
  21. ###< doctrine/doctrine-bundle ###
  22. ###> lexik/jwt-authentication-bundle ###
  23. JWT_SECRET_KEY=%kernel.project_dir%/config/jwt/private.pem
  24. JWT_PUBLIC_KEY=%kernel.project_dir%/config/jwt/public.pem
  25. JWT_PASSPHRASE=opentalent
  26. ###< lexik/jwt-authentication-bundle ###
  27. ###> opentalent config folder ###
  28. OPENTALENT_CONFIG=/config/opentalent
  29. ###< opentalent config folder ###
  30. ###> dolibarr client ###
  31. DOLIBARR_API_BASE_URI=https://dev-erp.2iopenservice.com/api/index.php/
  32. DOLIBARR_API_TOKEN=Bocc4zC0J186v8J6QCqu7DnoIw4I7mCJ
  33. ###< dolibarr client ###
  34. ###> mobyt client ###
  35. MOBYT_API_BASE_URI=https://app.mobyt.fr/API/v1.0/REST/
  36. ###< mobyt client ###
  37. ###> knplabs/knp-snappy-bundle ###
  38. WKHTMLTOPDF_PATH=/usr/local/bin/wkhtmltopdf
  39. WKHTMLTOIMAGE_PATH=/usr/local/bin/wkhtmltoimage
  40. ###< knplabs/knp-snappy-bundle ###
  41. ###> symfony/messenger ###
  42. # Choose one of the transports below
  43. # MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages
  44. # MESSENGER_TRANSPORT_DSN=redis://localhost:6379/messages
  45. MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
  46. ###< symfony/messenger ###
  47. ###> AdminAssos configuration ###
  48. # => defined in the .env.<environment> files
  49. ###< AdminAssos configuration ###
  50. ###> symfony/lock ###
  51. LOCK_DSN=semaphore
  52. ###< symfony/lock ###
  53. ###> symfony/mailer ###
  54. MAILER_DSN=smtp://localhost
  55. ###< symfony/mailer ###
  56. ###> bindfile populate buffer file
  57. BIND_FILE_BUFFER_FILE=var/subdomain.txt
  58. ###< bindfile populate buffer file
  59. ###> elasticsearch ###
  60. ELASTICSEARCH_HOST=localhost
  61. ELASTICSEARCH_PORT=9200
  62. ###< elasticsearch ###
  63. ###> symfony/mercure-bundle ###
  64. # See https://symfony.com/doc/current/mercure.html#configuration
  65. # The URL of the Mercure hub, used by the app to publish updates (can be a local URL)
  66. MERCURE_URL=http://mercure/.well-known/mercure
  67. # The public URL of the Mercure hub, used by the browser to connect
  68. MERCURE_PUBLIC_URL=https://local.mercure.opentalent.fr/.well-known/mercure
  69. # The secret key used to sign the JWTs
  70. MERCURE_PUBLISHER_JWT_KEY=NQEupdREijrfYvCmF2mnvZQFL9zLKDH9RCYter6tUWzjemPqzicffhc2fSf0yEmM
  71. ###< symfony/mercure-bundle ###
  72. ###> AdminAssos configuration ###
  73. DATABASE_ADMINASSOS_URL=mysql://root:mysql660@db:3306/adminassos?serverVersion=5.7
  74. ###< AdminAssos configuration ###
  75. ###> Audit configuration ###
  76. DATABASE_AUDIT_URL=mysql://root:mysql660@db:3306/audit?serverVersion=5.7
  77. ###< Audit configuration ###
  78. ###> typo3 client ###
  79. TYPO3_BASE_URI=http://docker.sub.opentalent.fr
  80. ###< typo3 client ###
  81. ###> nelmio/cors-bundle ###
  82. CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$'
  83. ###< nelmio/cors-bundle ###
  84. ###> filename log ###
  85. LOG_FILE_NAME=undefined
  86. ###< filename log ###
  87. ### Internal requests (@see doc/internal_requests.md)
  88. INTERNAL_REQUESTS_TOKEN=sRyfu6SZLR9StpnSKYRdl6i9wr5qs1bJQzro4DUiVyYJ2jknl
  89. INTERNAL_FILES_DOWNLOAD_URI=https://local.api.opentalent.fr/_internal/secure/files
  90. ###