Skip to content

Commit

Permalink
Flesh out installation instructions a bit
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
stewart committed Jul 12, 2016
1 parent 78b683e commit add07f9
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,19 @@ Just add this line to your `Gemfile`:
gem "solidus_auth_devise"
```

Then run `bundle install`.
Then, run `bundle install`.

After that's done, you can install and run the necessary migrations, then seed the database:

```shell
bundle exec rake solidus_auth:install:migration
bundle exec rake db:migrate
bundle exec rake db:seed
```

### Default Username/Password

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.

### Confirmable

Expand Down

0 comments on commit add07f9

Please sign in to comment.