2020-07-24 21:56:48 +00:00
# Directus Remote Trigger
Trigger remote urls in the Directus admin view.
2020-07-24 21:59:05 +00:00
![Screenshot ](https://i.imgur.com/Cnl3PBn.png )
2020-07-24 21:56:48 +00:00
## 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 🚀
2020-07-24 21:59:05 +00:00
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:
2020-07-24 22:03:41 +00:00
- ./remote-trigger:/var/directus/public/extensions/custom/modules/remote-trigger
2020-07-24 21:59:05 +00:00
```
2020-07-24 21:56:48 +00:00
## Local
```bash
# Start the dev script
npm run dev
# Start
docker-compose up -d
# If you have not initialized the DB yet.
docker-compose run --rm directus install --email hi@example.org --password h4x0r
# http://localhost
```