From db1fb1138c51ce0b38c778e7ce15676c82770ff3 Mon Sep 17 00:00:00 2001 From: Nicco Date: Fri, 24 Jul 2020 23:59:05 +0200 Subject: [PATCH] Update readme.md --- readme.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 8b12e5a..f1f712c 100644 --- a/readme.md +++ b/readme.md @@ -2,13 +2,30 @@ Trigger remote urls in the Directus admin view. +![Screenshot](https://i.imgur.com/Cnl3PBn.png) + ## 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 🚀 -![Screenshot](https://i.imgur.com/Cnl3PBn.png) +1. Download the [latest release](https://github.com/cupcakearmy/directus-remote-trigger/releases) +2. Unzip +3. Add it to the docker config + +```yaml +version: '3.7' + +services: + mysql: + ... + + directus: + image: directus/directus:v8-apache + volumes: + - ./dist:/var/directus/public/extensions/custom/modules/remote-trigger +``` ## Local