You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: app/controllers/docs/5.6/installation.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,9 +107,13 @@ This will publish some data sets to some self-explanatory uri's. For example CSV
107
107
108
108
#### Get started with our user interface
109
109
110
-
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:
110
+
We've created a user interface to manage datasets and users on the uri api/admin, relative to the root uri. To create an initial admin user you should run the following command:
111
+
112
+
php artisan db:seed --class=UserSeeder
113
+
114
+
The default credentials for the newly created user are:
111
115
112
116
user: admin
113
117
password: admin
114
118
115
-
Best practice is to change the admin password immediately by editing it using the user interface. Click the question mark <iclass='fa fa-lg fa-question-circle'></i> in the user interface to start the help guide.
119
+
Best practice is to change the admin password immediately by editing it using the user interface. Click the question mark <iclass='fa fa-lg fa-question-circle'></i> in the user interface to start the help guide.
0 commit comments