5 Commits

Author SHA1 Message Date
dependabot[bot]
71cea00b2b Bump minimist from 1.2.5 to 1.2.6
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-27 06:14:59 +00:00
2ad4b897f4 Update README.md 2021-03-19 10:38:24 +01:00
9dd5c0e28d Update and rename readme.md to README.md 2021-03-19 10:37:41 +01:00
0734933a50 Update readme.md 2020-07-25 00:07:47 +02:00
fdb97fe877 clean package 2020-07-25 00:06:42 +02:00
3 changed files with 12 additions and 16 deletions

View File

@@ -4,14 +4,16 @@ Trigger remote urls in the Directus admin view.
![Screenshot](https://i.imgur.com/Cnl3PBn.png)
> ## ⚠️ As of Directus 9 this is mostly solved natively and you should use the built in webhooks
## Motivation
I needed a way to trigger my Vercel build as the native hooks support in the settings page would require a hook for each crud operation on each collection.
## Getting Started 🚀
1. Download the [latest release](https://github.com/cupcakearmy/directus-remote-trigger/releases)
2. Unzip
1. Download the [latest release](https://github.com/cupcakearmy/directus-remote-trigger/releases/latest)
2. Unzip `unzip remote-trigger.zip`
3. Add it to the docker config
```yaml

10
package-lock.json generated
View File

@@ -1,8 +1,6 @@
{
"name": "advanced-webhooks",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"lockfileVersion": 1,
"dependencies": {
"@babel/code-frame": {
"version": "7.10.4",
@@ -4434,9 +4432,9 @@
}
},
"minimist": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
"integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==",
"dev": true
},
"mixin-deep": {

View File

@@ -1,16 +1,12 @@
{
"name": "advanced-webhooks",
"version": "1.0.0",
"description": "",
"main": "",
"private": true,
"scripts": {
"build": "rm -rf ./dist/* && directus-extensions build",
"pack": "cp -r ./dist/ ./remote-trigger && zip -r remote-trigger.zip remote-trigger/ && rm -rf ./remote-trigger",
"pack": "npm run build && cp -r ./dist/ ./remote-trigger && zip -r remote-trigger.zip remote-trigger/ && rm -rf ./remote-trigger",
"dev": "directus-extensions watch"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"author": "Niccolo Borgioli",
"license": "MIT",
"dependencies": {
"vue": "^2.6.11",
"vue-hot-reload-api": "^2.3.4"