Created
January 2, 2018 18:56
-
-
Save bcerban/4e0acf573b6e00b0046089e7bc0f609d to your computer and use it in GitHub Desktop.
POS API Functional Tests Database Config M2
This file contains hidden or 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
| <?php | |
| return [ | |
| 'language' => 'en_US', | |
| 'timezone' => 'America/Los_Angeles', | |
| 'currency' => 'USD', | |
| 'db-host' => 'localhost', | |
| 'db-name' => 'circle_test', | |
| 'db-user' => 'ubuntu', | |
| 'db-password' => '', | |
| 'backend-frontname' => 'admin', | |
| 'base-url' => 'http://mage2.dev:8080/', | |
| 'use-secure' => '0', | |
| 'use-rewrites' => '0', | |
| 'admin-lastname' => 'Magento', | |
| 'admin-firstname' => 'User', | |
| 'admin-email' => 'user@example.com', | |
| 'admin-user' => 'admin', | |
| 'admin-password' => 'admin123', | |
| 'admin-use-security-key' => '0', | |
| 'sales-order-increment-prefix' => time(), | |
| 'session-save' => 'db', | |
| 'cleanup-database' => false, | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment