Sha256: a18b9ee0b405d1d0f28806292a17984a7379e07cb4421adc46ebcf7131b9b45b

Contents?: true

Size: 1.63 KB

Versions: 1

Compression:

Stored size: 1.63 KB

Contents

### PHCPress(PRO) (News/Blog Engine) Documentation
PHCPress(PRO) rails CMS 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  

	gem 'phcpresspro'
	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.  

	rails phcpresspro:install:migrations
	rails db:migrate

#### Step 4 - Mount PHCPress & Add Routes
Mount PHCPress by adding code below to your routes file.  

	mount Phcpresspro::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 phcpresspro:views

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcpresspro-87.0.1 README.md