Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/its-devtastic/strapi-plugin-manual-build
A plugin for Strapi that adds an easy way for non-admin CMS users to trigger a build
https://github.com/its-devtastic/strapi-plugin-manual-build
static-site-generator strapi strapi-plugin vercel
Last synced: about 2 months ago
JSON representation
A plugin for Strapi that adds an easy way for non-admin CMS users to trigger a build
- Host: GitHub
- URL: https://github.com/its-devtastic/strapi-plugin-manual-build
- Owner: its-devtastic
- License: mit
- Created: 2022-07-01T07:38:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-01T11:45:12.000Z (over 2 years ago)
- Last Synced: 2024-10-31T18:37:33.373Z (2 months ago)
- Topics: static-site-generator, strapi, strapi-plugin, vercel
- Language: JavaScript
- Homepage:
- Size: 301 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---
---
A plugin for [Strapi](https://github.com/strapi/strapi) that adds an easy way
for non-admin CMS users to trigger a build.⚠️ Currently only supports Vercel
## Supported Strapi version
Currently only Strapi v4 is supported.
## Installation
With `npm`
```bash
npm install strapi-plugin-manual-build
```With `yarn`
```bash
yarn add strapi-plugin-manual-build
```In the `config/plugins.js` file add:
```js
module.exports = ({ env }) => ({
"manual-build": {
config: {
provider: "vercel",
buildUrl: env("BUILD_URL"),
accessToken: env("VERCEL_ACCESS_TOKEN"),
teamId: env("VERCEL_TEAM_ID"), // optional
}
}
// Other plugins
})
```## Support
For Strapi documentation, please go to [the official Strapi documentation](https://strapi.io/documentation/).
For questions and issues with this plugin use one of the following channels:
- [GitHub](https://github.com/devtastic-org/strapi-plugin-manual-build/issues) (Bug reports, Contributions, Questions and Discussions)
- [E-mail](mailto:[email protected]) - We'll respond as soon as possible## 📝 License
[MIT License](LICENSE.md)
Made with 💜 in Utrecht by [Devtastic](https://devtastic.co/).