README.md in phcpress-57.0.1 vs README.md in phcpress-57.0.2

- old
+ new

@@ -1,47 +1,35 @@ -### PHCPress (News/Blog Engine) Documentation -PHCPress rails CMS engine to manage your website's articles, categories and media. - +### PHCPress Documentation +Ruby on Rails 7 engine to manage your website's articles, categories and media. + * Website article posts with WYSIWYG editor. * Upload images locally or use any popular cloud service. * Customizable article categories module included. - -#### Step 1 - Add PHCPress to your gemfile and run command - +* [Pro version](https://bradpotts.github.io/phcpresspro/) has multi-tenancy capabilities. + +#### Step 1 - Add PHCPress to your gemfile and run the install 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) +#### 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. -#### 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 3 - Mount PHCPress & Add Routes +Mount PHCPress by adding code below to your routes file. -#### Step 2b - Or you can add authentication option 2 to your gemfile. -This plugin can run fine with devise to run and operate. + mount PhcdevworksAccountsDevise::Engine, :at => '/' + mount Phcpress::Engine, :at => '/' - gem 'devise' - bundle install +#### Step 4 - Copy All Required Database Tables +To copy PHCPress and PHCDevworks Accounts Devise database migrations. -#### Step 3 - Copy PHCPress Database Tables -To copy PHCPress' required database migrations, copy each command individually to your terminal's command line. - - rails phcpress:install:migrations - rails db:migrate - -#### Step 4 - Mount PHCPress & Add Routes -Mount PHCPress by adding code below to your routes file. - - mount phcpress::Engine, :at => '/' - -#### 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 6 - Generate Contact Form View (Customization) -All PHCPress views and layouts can be overwritten by copying files to your application. - - rails generate phcpress:views + 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