README.md in phcscriptcdnpro-79.0.1 vs README.md in phcscriptcdnpro-79.0.2
- old
+ new
@@ -1,34 +1,36 @@
-### PHCScriptCDN(PRO) (Script Listing Engine) Documentation
-
-PHCScriptCDN(PRO) rails script management engine for website script CDN listings.
-
+### PHCScriptCDN Documentation
+
+Ruby on Rails 7 engine to manage CDN script listings.
+
- Manage script CDN listings for websites.
- Main script title and description.
- Script versions and script URLs.
-
-#### Step 1 - Add PHCScriptCDN(PRO) to your gemfile and run command
-
+- This version has multi-tenancy capabilities.
+
+#### Step 1 - Add PHCScriptCDN to your gemfile and run the install command
+
gem 'phcscriptcdnpro'
bundle install
-
-#### Step 2 - Copy PHCScriptCDN(PRO) Database Tables
-To copy PHCScriptCDN's required database migrations, copy each command individually to your terminal's command line.
-
- rails phcscriptcdnpro:install:migrations
- rails db:migrate
-
+
+#### Step 2 - Add [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) to your gemfile
+This plugin is optimized for PHCDevworks Accounts which uses Devise.
+
+ gem 'phcdevworks_accounts_devise'
+ bundle install
+
#### Step 3 - Mount PHCScriptCDN & Add Routes
-Mount PHCMembers by adding code below to your routes file.
-
+Mount PHCScriptCDN by adding code below to your routes file.
+
+ mount PhcdevworksAccountsDevise::Engine, :at => '/'
mount Phcscriptcdnpro::Engine, :at => '/'
-
-#### Step 4 - Recompile Assets
-To properly function re-compile your application's assets to copy over required files.
-
- rails assets:clobber
- rails assets:precompile
-
-#### Step 5 - Generate Contact Form View (Customization)
-All PHCScriptCDN views and layouts can be overwritten by copying files to your application.
-
- rails generate phcscriptcdnpro:views
+
+#### Step 4 - Copy All Required Database Tables
+To copy PHCScriptCDN and PHCDevworks Accounts Devise database migrations.
+
+ rails railties:install:migrations
+
+#### Step 5 - Recompile Assets
+To ensure proper function re-compile your application's assets.
+
+ rails assets:clobber && rails assets:precompile
+
\ No newline at end of file