Version 1.2.1
Demo site: https://foobot.bain.design
If you just want to install the plugin and display your air quality data on your website, here's what you need to do.
- Download the plugin .zip archive and unpack it.
 - Locate the plugin file and upload to your website Plugins folder.
 - Log into WordPress and activate the plugin.
 - Once the plugin is activated, go to 
Settings > Foobot APIand add your Foobot API username and API key (Get your Foobot API key here). - Use the shortcode 
[foobot-show-data device="foo"], wherefoois your device name, to show the world your air quality data! 
If you want to collaborate on this plugin or fork your own version, here's a brief guide.
Add the following to your VVV config.yml
  wp-foobot-api:
    skip_provisioning: false
    description: "A WordPress plugin to display Foobot data"
    repo: https://github.com/markbaindesign/wp-foobot-api.git
    hosts:
      - wp-foobot-api.test
    custom:
      delete_default_plugins: true
      install_plugins:
        - transients-manager
        - query-monitor
      wp_config_constants:
        WP_DEBUG: true
        WP_DEBUG_LOG: true
        WP_DEBUG_DISPLAY: false
        WP_DISABLE_FATAL_ERROR_HANDLER: true
WP CLI is your friend. Here are some commands to make testing a breeze.
wp db tables --all-tables
wp db query 'SELECT * FROM wp_bd_foobot_device_data'
wp db query 'SELECT * FROM wp_bd_foobot_device_data ORDER BY id DESC LIMIT 10'
wp db query 'SELECT * FROM wp_bd_foobot_sensor_data'
wp option get baindesign_foobot_api_settings
When changing the database table, you must also:
- Update the database version function
 - Deactivate the plugin
 - Reactivate the plugin
 
...in order for the changes to take effect.