From 546ddc43421ed3a0c7423d131f5a09ee89ac93ec Mon Sep 17 00:00:00 2001 From: Ross Jones Date: Tue, 5 Jan 2016 08:42:24 +0000 Subject: [PATCH] Clarify user-creation during installation To get the admin user to appear, I had to run the db:seed command and provide the UserSeeder class - so this change clarifies that you should run that command. --- app/controllers/docs/5.6/installation.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/controllers/docs/5.6/installation.md b/app/controllers/docs/5.6/installation.md index f3add31..ceb2afe 100644 --- a/app/controllers/docs/5.6/installation.md +++ b/app/controllers/docs/5.6/installation.md @@ -107,9 +107,14 @@ This will publish some data sets to some self-explanatory uri's. For example CSV #### Get started with our user interface -We've created a user interface to manage datasets and users on the uri api/admin, relative to the root uri. The default credentials are: +We've created a user interface to manage datasets and users on the uri api/admin, relative to the root uri. The default credentials for the admin user are: user: admin password: admin -Best practice is to change the admin password immediately by editing it using the user interface. Click the question mark in the user interface to start the help guide. \ No newline at end of file +If no users were automatically created during the install you can create an initial admin user with the following command: + + php artisan db:seed --class=UserSeeder + + +Best practice is to change the admin password immediately by editing it using the user interface. Click the question mark in the user interface to start the help guide.