Sha256: 7a7cef477b377feb92dbc7907ddc79b61b0d38db15d44051775f6aa835471499

Contents?: true

Size: 1.86 KB

Versions: 1

Compression:

Stored size: 1.86 KB

Contents

#### PHCMembers(PRO) (Membership & Directory Engine) Documentation  
PHCMembers(Pro) rails engine to manage membership information and directory listings.  

* Fast setup of membership management and web directory modules.
* Directory and listings manager with a web directory API.
* Member's list, contact information, and listings manager.
* Easy app integration with views that can be customized.

#### Step 1 - Add PHCMembers(Pro) to your gemfile and run command   

	gem 'phcmemberspro'
	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 - Add PHCMembers(Pro) & PhcdevworksAccountsDevise(Pro) Database Tables  
To copy PHCMembers(Pro) & PhcdevworksAccountsDevise(Pro) database migrations, copy each command individually.  

	rails phcmemberspro:install:migrations
  rails PhcdevworksAccountsDevise:install:migrations
	rails db:migrate

#### Step 4 - Mount PHCMembers(Pro) & Add Routes
Mount PHCMembers(Pro) by adding code below to your routes file.  

	mount PhcdevworksAccountsDevise::Engine, :at => '/'
	mount Phcmemberspro::Engine, :at => '/'

#### Step 5 - Recompile Assets  
To properly function re-compile your application's assets to copy over required files.

	rails assets:clobber
	rails assets:precompile  

#### Step 6 - Generate Views  (Customization)
Generate views for customization and app integration.  

	rails generate phcmemberspro:views
  

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcmemberspro-92.0.1 README.md