.env.example 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #Copyright © Magento, Inc. All rights reserved.
  2. #See COPYING.txt for license details.
  3. #*** Set the base URL for your Magento instance ***#
  4. MAGENTO_BASE_URL=http://devdocs.magento.com/
  5. #*** Uncomment if you are running Admin Panel on separate domain (used with MAGENTO_BACKEND_NAME) ***#
  6. # MAGENTO_BACKEND_BASE_HOST=http://admin.example.com/
  7. #*** Set the Admin Username and Password for your Magento instance ***#
  8. MAGENTO_BACKEND_NAME=admin
  9. MAGENTO_ADMIN_USERNAME=admin
  10. MAGENTO_ADMIN_PASSWORD=123123q
  11. #*** Path to CLI entry point and command parameter name. Uncomment and change if folder structure differs from standard Magento installation
  12. #MAGENTO_CLI_COMMAND_PATH=dev/tests/acceptance/utils/command.php
  13. #MAGENTO_CLI_COMMAND_PARAMETER=command
  14. #*** Selenium Server Protocol, Host, Port, and Path, with local defaults. Uncomment and change if not running Selenium locally.
  15. #SELENIUM_HOST=127.0.0.1
  16. #SELENIUM_PORT=4444
  17. #SELENIUM_PROTOCOL=http
  18. #SELENIUM_PATH=/wd/hub
  19. #*** Browser for running tests, default chrome. Uncomment and change if you want to run tests on another browser (ex. firefox).
  20. BROWSER=chrome
  21. #*** Uncomment and set host & port if your dev environment needs different value other than MAGENTO_BASE_URL for Rest API Requests ***#
  22. #MAGENTO_RESTAPI_SERVER_HOST=restapi.magento.com
  23. #MAGENTO_RESTAPI_SERVER_PORT=8080
  24. #MAGENTO_RESTAPI_SERVER_PROTOCOL=https
  25. #*** Uncomment these properties to set up a dev environment with symlinked projects ***#
  26. #TESTS_BP=
  27. #FW_BP=
  28. #TESTS_MODULE_PATH=
  29. #*** Uncomment this property to change the default timezone MFTF will use for the generateDate action ***#
  30. #DEFAULT_TIMEZONE=America/Los_Angeles
  31. #*** These properties impact the modules loaded into MFTF, you can point to your own full path, or a custom set of modules located with the core set
  32. MODULE_WHITELIST=Magento_Framework,Magento_ConfigurableProductWishlist,Magento_ConfigurableProductCatalogSearch
  33. #CUSTOM_MODULE_PATHS=
  34. #*** Bool property which allows the user to toggle debug output during test execution
  35. #MFTF_DEBUG=
  36. #*** Default timeout for wait actions
  37. #WAIT_TIMEOUT=10
  38. #*** End of .env ***#