Sha256: 83466a2c050a358348efef7855c204d917802f071397975dc095476b583311cc

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

### 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.
- This version has multi-tenancy capabilities.
  
#### Step 1 - Add PHCScriptCDN to your gemfile and run the install command
  
	gem 'phcscriptcdnpro'
	bundle install
  
#### 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 PHCScriptCDN by adding code below to your routes file.
  
	mount PhcdevworksAccountsDevise::Engine, :at => '/'
	mount Phcscriptcdnpro::Engine, :at => '/'
  
#### 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
  

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phcscriptcdnpro-79.0.3 README.md
phcscriptcdnpro-79.0.2 README.md