Contributors: Tyler Kemme
Requires at least: 4.4
Tested up to: 4.7.2
Stable tag: 0.3.6
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
A Cloudflare Analytics Dashboard for Wordpress. Simply enter your Cloudflare Email Address and Cloudflare API Key and you can access the analytics dashboards for each of your sites on Cloudflare.
-
Download the latest release
-
Upload the entire
/wp-cloudflare-dashboard
directory to the/wp-content/plugins/
directory OR upload the plugin using the Wordpress 'Plugins' menu. -
Activate WP Cloudflare Dashboard through the 'Plugins' menu in WordPress.
-
Clone the repository to
/wp-content/plugins
git clone https://github.com/tpkemme/wp-cloudflare-dashboard.git
-
Install dependencies with composer and npm
composer install && npm install --only=dev
Use the npm version
command to increment the version number for the plugin across all files. The command composer dist
can be used to create a new 'dist' branch. The 'dist' branch contains only the files necessary for the functionality of the plugin. All development files are removed from the 'master' branch to create the 'dist' branch.
The typical developer's workflow looks something like this:
-
Add and push any changes made to the repo
git add -A && git commit -m "example commit"
-
Update the version
npm version minor && git push origin master
-
Create a new distribution release
composer dist