Co-authored-by: jon brookes <marshyon@gmail.com> Reviewed-on: https://codeberg.org/headshed/share-lt/pulls/20
11 lines
265 B
Bash
Executable file
11 lines
265 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
URL='http://127.0.0.1:8000'
|
|
|
|
curl -X POST $URL/api/notifications/preview-site-built \
|
|
-H "Authorization: Bearer $TOKEN" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"message": "Published to LIVE 💯🚀🎯 - site notification!"}'
|
|
|
|
|
|
|