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
These didn't actually tell users how to install solidus_auth_devise into
their store. Let's add some of those details, along with info about the
default username/password for the created admin user.
Copy file name to clipboardExpand all lines: README.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,19 @@ Just add this line to your `Gemfile`:
12
12
gem "solidus_auth_devise"
13
13
```
14
14
15
-
Then run `bundle install`.
15
+
Then, run `bundle install`.
16
+
17
+
After that's done, you can install and run the necessary migrations, then seed the database:
18
+
19
+
```shell
20
+
bundle exec rake solidus_auth:install:migration
21
+
bundle exec rake db:migrate
22
+
bundle exec rake db:seed
23
+
```
24
+
25
+
### Default Username/Password
26
+
27
+
As part of running the above installation steps, you will be asked to set an admin email/password combination. The default values are `admin@example.com` and `test123`, respectively.
0 commit comments