README.md in phcpress-57.0.0 vs README.md in phcpress-57.0.1
- old
+ new
@@ -7,28 +7,41 @@
#### Step 1 - Add PHCPress to your gemfile and run command
gem 'phcpress'
bundle install
+
+#### Step 2 Add either [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) or [Devise](https://github.com/heartcombo/devise)
+
+#### 2a - Add authentication option 1 to your gemfile. Can pick option 1 or 2
+This plugin is optimized for PHCDevworks Accounts Devise (Skins built using Devise).
+
+ gem 'phcdevworks_accounts_devise'
+ bundle install
+
+#### Step 2b - Or you can add authentication option 2 to your gemfile.
+This plugin can run fine with devise to run and operate.
+
+ gem 'devise'
+ bundle install
+
+#### Step 3 - Copy PHCPress Database Tables
+To copy PHCPress' required database migrations, copy each command individually to your terminal's command line.
-#### Step 2 - Copy PHCPress Database Tables
-To copy PHCPress' requried database migrations, copy each command individually to your terminal's command line.
-
rails phcpress:install:migrations
rails db:migrate
-#### Step 3 - Mount PHCPress & Add Routes
+#### Step 4 - Mount PHCPress & Add Routes
Mount PHCPress by adding code below to your routes file.
- mount Phcpress::Engine, :at => '/'
+ mount phcpress::Engine, :at => '/'
-#### Step 4 - Recompile Assets
-To properly function re-compile your application's assets to copy over required files.
+#### Step 5 - Recompile Assets
+To properly function re-compile your application's assets to copy over requried files.
rails assets:clobber
rails assets:precompile
-#### Step 5 - Generate Contact Form View (Customization)
+#### Step 6 - Generate Contact Form View (Customization)
All PHCPress views and layouts can be overwritten by copying files to your application.
rails generate phcpress:views
-
\ No newline at end of file