Sha256: 95d6ca3968c8c0d8d84bc87ed0f1375c2f9c9adb69765e86ece10fe9088ada68

Contents?: true

Size: 1.8 KB

Versions: 1

Compression:

Stored size: 1.8 KB

Contents

#### PHCMembers (Membership & Directory Engine) Documentation  
PHCMembers 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 to your gemfile and run command   

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

	rails phcmembers:install:migrations
  rails PhcdevworksAccountsDevise:install:migrations
	rails db:migrate

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

	mount PhcdevworksAccountsDevise::Engine, :at => '/'
	mount phcmembers::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 phcmembers:views
  

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcmembers-68.0.1 README.md