Skip to content

Commit

Permalink
Clarify user-creation during installation
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rossjones committed Jan 5, 2016
1 parent 316a337 commit 546ddc4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/controllers/docs/5.6/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <i class='fa fa-lg fa-question-circle'></i> in the user interface to start the help guide.
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 <i class='fa fa-lg fa-question-circle'></i> in the user interface to start the help guide.

0 comments on commit 546ddc4

Please sign in to comment.