Helper tool to schedule API calls based on a config file or environment variables
- Execute requests to URLs within the given interval
- node v12.14.1
# Source
git clone git@github.com:dpolicastro/jubilant-octo-disco.git
npm install
# Docker
docker build -t jubilant-octo-disco .
export URL=http://google.com
export INTERVAL=3000
node src/app.js
# OR
docker run --name jod -e URL='http://google.com' -e INTERVAL=3000 dpolicastro/jubilant-octo-disco:latest