Strapi v4 plugin to trigger and monitor a deployment on Vercel
Strapi v4 plugin to trigger and monitor a deployment on Vercel.
Home Page:
Settings Page:
Run the following command in your Strapi project to install vercel-deploy:
1yarn add strapi-plugin-vercel-deploy
2# or
3npm i -S strapi-plugin-vercel-deploy
Open config/plugins.js
file and add the vercel-deploy entry:
1module.exports = ({ env }) => ({
2 "vercel-deploy": {
3 enabled: true,
4 },
5});
You can now run Strapi:
1yarn develop
You should see the Vercel Deploy menu in the left panel.
N.B. You may need to run yarn build
in order to see the new menu entries.
Then you can proceed with the plugin configuration.
Example:
1module.exports = ({ env }) => ({
2 "vercel-deploy": {
3 enabled: true,
4 config: {
5 deployHook:
6 "https://api.vercel.com/v1/integrations/deploy/prj_<deploy-hook>",
7 apiToken: "<vercel-api-token>",
8 appFilter: "your-app-name-on-vercel",
9 teamFilter: "your-team-id-on-vercel",
10 roles: ["strapi-super-admin", "strapi-editor", "strapi-author"],
11 },
12 },
13});
The plugin is reading the following configuration variables to work:
deployHook
: Url of the git deploy hook exposed in Vercel.
apiToken
: API token of your Vercel account used to fetch the list of deployments
appFilter
: Name of your Vercel App used to filter the list of deployments
teamFilter
: Id of your Vercel Team used to filter the list of deployments
roles
: List of user roles that can use the plugin
You shouldn't disclose the api token and the deploy hook url for security reasons. Therefore, you shouldn't add these values to versioning in a public git repository. A suggested solution is to use environment variables. Example:
1module.exports = ({ env }) => ({
2 "vercel-deploy": {
3 enabled: true,
4 config: {
5 deployHook: process.env.VERCEL_DEPLOY_PLUGIN_HOOK,
6 apiToken: process.env.VERCEL_DEPLOY_PLUGIN_API_TOKEN,
7 appFilter: process.env.VERCEL_DEPLOY_PLUGIN_APP_FILTER,
8 teamFilter: process.env.VERCEL_DEPLOY_PLUGIN_TEAM_FILTER,
9 roles: ["strapi-super-admin"],
10 },
11 },
12});
For local development, you can add the config properties in your .env
file:
1VERCEL_DEPLOY_PLUGIN_HOOK="https://api.vercel.com/v1/integrations/deploy/prj_<deploy-hook>"
2VERCEL_DEPLOY_PLUGIN_API_TOKEN="<vercel-api-token>"
3VERCEL_DEPLOY_PLUGIN_APP_FILTER="your-app-name-on-vercel"
You can save these values as process env variable on your server (e.g. this guide is for Heroku).
npm install strapi-plugin-vercel-deploy
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.