directus-extension-publish-netlify
v2.1.0
Published
A Directus extension that can be used to manage and run Netlify builds of your static site after updating your content in Directus
Downloads
81
Maintainers
Readme
Directus Extension: directus-extension-publish-netlify
A Directus v10+ Extension (including a frontend app module and backend API endpoints) for managing builds and deploys of a Netlify site.
Use Case
This was developed to make it easier for an admin user of the Directus app to start a build of a static site generator (such as gatsby, gridsome, etc) on Netlify after data in Directus has been updated. The extension will keep track of when the site was last updated and if there have been any data updates in Directus since the last update. The user can start a new Netlify build and manage the published deploy directly from within Directus.
Installation
View the Directus Docs for the most up to date information on installing extensions.
Configuration
Some advanced configuration options can be set in the config.js
file before the extension is built and deployed:
module.exports = {
"extension": "dwaring87-publish-netlify",
"activityFilter": {
"action": {
"_nin": ["login", "comment"]
},
"collection": {
"_nin": ["directus_dashboards", "directus_folders", "directus_migrations", "directus_panels", "directus_permissions", "directus_sessions", "directus_settings", "directus_webhooks"]
}
},
"additional_role_ids": ["bdc0ea73-1b18-4a2a-a2dd-dc5c6d139810"],
"deploy_history_count": 25,
"extension_path_env_var": "DIRECTUS_EXTENSIONS_PATH"
}
Activity Filter
The activityFilter
object is passed to the GET
/activity
Directus API endpoint when determining the ID of the last activity item to compare to the stored activity ID associated with the most recent Netlify build. When the ID of the last activity item is greater than the stored activity ID of the most recent Netlify build, the module will indicate that updates are available (ie, data in the database has been updated since the last build).
By default, the module will exclude any login and comment activity, as well as any changes to most of the internal Directus tables. You can modify the activityFilter
to include additional tables to exclude when checking if an update is suggested.
Enabled Roles
By default, the module is available in the Directus app to any user associated with a Directus role that has Admin Access enabled. If you want to enable the module for non-admin roles:
- Add the Role ID to the
additional_role_ids
array- You need to add the ID of the role and not the name. You can get the ID from the
directus_roles
table or from the URL of the Role Settings page (ie,/admin/settings/roles/{id}
).
- You need to add the ID of the role and not the name. You can get the ID from the
- Ensure the role has full read access to the Directus Activity table.
- The module checks the activity table to see if there has been a data change since the most recent Netlify build
- By default, roles with App Access have limited read access to the activity table (filtered to include only activity of their own account)
- Without full read access, the module will not indicate that updates are available if changes were made by another user
- Rebuild and Redeploy the extension
- Restart Directus
Deploy History
By default, the module will display the last 25 Netlify builds in the Deploys table. You can modify the deploy_history_count
property to change the max number of deploys displayed.
Usage
Setup
There are two environment variables that can be set before the extension can be used:
NETLIFY_SITE
: the name of the Netlify site (the part before.netlify.app
) to manage with the extensionNETLIFY_TOKEN
: a Netlify personal access token used to interact with the Netlify API (User Settings -> Applications -> Personal access tokens -> New access token)
If either of these environment variables are missing, the variables can be set in the extension settings.
Enable
The custom module will need to be first enabled in the Directus app's settings. Go to the Settings module, Project Settings page, and enable the Publish, /directus-extension-publish-netlify module in the Modules section.
Build
To build a site, go to the module's Build Site page. This will display basic information about the configured Netlify site, including information on its published deploy. To start a build, just click the Build button. This will trigger a build on Netlify and its status will be monitored within Directus.
If auto-publishing is enabled, the new deploy will be published (if the build is successful). When auto-publishing is disabled, a new build will be created but not published. When the build is complete, you can preview the build by viewing the specific deploy and then choose to publish the new deploy.
The Deploys table lists the 25 most recent deploys for the site. Each deploy can be viewed and chosen as the new published deploy.