Skip to content

Commit add07f9

Browse files
committed
Flesh out installation instructions a bit
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.
1 parent 78b683e commit add07f9

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,19 @@ Just add this line to your `Gemfile`:
1212
gem "solidus_auth_devise"
1313
```
1414

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.
1628

1729
### Confirmable
1830

0 commit comments

Comments
 (0)