7 Commits

Author SHA1 Message Date
dependabot[bot]
faee0953d3 Merge bafc76204d into 6571019e9b 2024-11-27 15:56:53 +00:00
6571019e9b Update README.md 2022-11-08 14:53:02 +01:00
dependabot[bot]
bafc76204d Bump elliptic from 6.5.3 to 6.5.4
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.3 to 6.5.4.
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](https://github.com/indutny/elliptic/compare/v6.5.3...v6.5.4)

Signed-off-by: dependabot[bot] <support@github.com>
2021-03-19 09:40:09 +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 23 additions and 25 deletions

View File

@@ -1,3 +1,7 @@
> ## ⚠️ As of Directus 9 this is not longer needed!
>
> Use the native [WebHooks](https://docs.directus.io/reference/system/webhooks.html#webhooks)
# Directus Remote Trigger # Directus Remote Trigger
Trigger remote urls in the Directus admin view. Trigger remote urls in the Directus admin view.
@@ -10,8 +14,8 @@ I needed a way to trigger my Vercel build as the native hooks support in the set
## Getting Started 🚀 ## Getting Started 🚀
1. Download the [latest release](https://github.com/cupcakearmy/directus-remote-trigger/releases) 1. Download the [latest release](https://github.com/cupcakearmy/directus-remote-trigger/releases/latest)
2. Unzip 2. Unzip `unzip remote-trigger.zip`
3. Add it to the docker config 3. Add it to the docker config
```yaml ```yaml

28
package-lock.json generated
View File

@@ -1,8 +1,6 @@
{ {
"name": "advanced-webhooks",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true, "requires": true,
"lockfileVersion": 1,
"dependencies": { "dependencies": {
"@babel/code-frame": { "@babel/code-frame": {
"version": "7.10.4", "version": "7.10.4",
@@ -2819,24 +2817,24 @@
"dev": true "dev": true
}, },
"elliptic": { "elliptic": {
"version": "6.5.3", "version": "6.5.4",
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
"integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
"dev": true, "dev": true,
"requires": { "requires": {
"bn.js": "^4.4.0", "bn.js": "^4.11.9",
"brorand": "^1.0.1", "brorand": "^1.1.0",
"hash.js": "^1.0.0", "hash.js": "^1.0.0",
"hmac-drbg": "^1.0.0", "hmac-drbg": "^1.0.1",
"inherits": "^2.0.1", "inherits": "^2.0.4",
"minimalistic-assert": "^1.0.0", "minimalistic-assert": "^1.0.1",
"minimalistic-crypto-utils": "^1.0.0" "minimalistic-crypto-utils": "^1.0.1"
}, },
"dependencies": { "dependencies": {
"bn.js": { "bn.js": {
"version": "4.11.9", "version": "4.12.0",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
"integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
"dev": true "dev": true
} }
} }

View File

@@ -1,16 +1,12 @@
{ {
"name": "advanced-webhooks", "private": true,
"version": "1.0.0",
"description": "",
"main": "",
"scripts": { "scripts": {
"build": "rm -rf ./dist/* && directus-extensions build", "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" "dev": "directus-extensions watch"
}, },
"keywords": [], "author": "Niccolo Borgioli",
"author": "", "license": "MIT",
"license": "GPL-3.0",
"dependencies": { "dependencies": {
"vue": "^2.6.11", "vue": "^2.6.11",
"vue-hot-reload-api": "^2.3.4" "vue-hot-reload-api": "^2.3.4"