mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
22 lines
316 B
Bash
Executable File
22 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd "$(dirname "$0")"/..
|
|
|
|
source .env
|
|
|
|
export url=http://localhost:8088
|
|
#export url=https://api.compassmeet.com
|
|
|
|
export endpoint=/internal/send-search-notifications
|
|
|
|
curl -X POST ${url}${endpoint} \
|
|
-H "x-api-key: ${COMPASS_API_KEY}" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{}'
|
|
|
|
echo
|
|
|
|
|
|
|