Selaa lähdekoodia

Change default user/pass to john smith persona

Mark Shust 6 vuotta sitten
vanhempi
commit
1d0e6fa1fd

+ 7 - 0
CHANGELOG.md

@@ -6,8 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 ## [Unreleased]
 
+## [14.0.1] - 2018-07-28
+
+### Fixed
+- Magento 2.2.5 requires username and password to be different values. Updated to dummy "John Smith" user persona with username `john.smith` and password `password123`.
+
 ## [14.0.0] - 2018-07-21
+
 ### Added
 - New `dev/auth.json` file used instead of `~/.composer/auth.json` file, so each project can have different auth credentials.
+
 ### Changed
 - The `cron` service is now disabled by default. This services uses higher CPU and should probably only be enabled when working on cron-related tasks (or on production).

+ 5 - 5
compose/magento-2-windows/bin/setup.ps1

@@ -6,11 +6,11 @@ docker-compose exec phpfpm /usr/local/bin/php ./bin/magento setup:install `
   --db-user=magento `
   --db-password=magento `
   --base-url=http://magento2.test/ `
-  --admin-firstname=Admin `
-  --admin-lastname=User `
-  --admin-email=dummy@gmail.com `
-  --admin-user=magento2user `
-  --admin-password=magento2 `
+  --admin-firstname=John `
+  --admin-lastname=Smith `
+  --admin-email=john.smith@gmail.com `
+  --admin-user=john.smith `
+  --admin-password=password123 `
   --language=en_US `
   --currency=USD `
   --timezone=America/New_York `

+ 1 - 1
compose/magento-2-windows/docker-compose.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markoshust/docker-magento)
-# Version 14.0.0
+# Version 14.0.1
 
 version: "3"
 

+ 5 - 5
compose/magento-2/bin/setup

@@ -7,11 +7,11 @@ docker-compose exec phpfpm /usr/local/bin/php ./bin/magento setup:install \
   --db-user=magento \
   --db-password=magento \
   --base-url=http://magento2.test/ \
-  --admin-firstname=Admin \
-  --admin-lastname=User \
-  --admin-email=dummy@gmail.com \
-  --admin-user=magento2 \
-  --admin-password=magento2 \
+  --admin-firstname=John \
+  --admin-lastname=Smith \
+  --admin-email=john.smith@gmail.com \
+  --admin-user=john.smith \
+  --admin-password=password123 \
   --language=en_US \
   --currency=USD \
   --timezone=America/New_York \

+ 1 - 1
compose/magento-2/docker-compose.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markoshust/docker-magento)
-# Version 14.0.0
+# Version 14.0.1
 
 version: "3"