#Scheduler App An express application for monitoring job statuses
npm install
npm run build
npm test
npm start
http://localhost:8000/admin/scheduler-app
ENDPOINT METHOD OPERATION
------------------------------------------------------------
/api/jobs GET All scheduled jobs
/api/jobs/:job_id GET Get a scheduled job
/api/jobs/:job_id PUT Update a scheduled job
- add this repo to your package.json
{
"scheduler-app": "https://github.com/goodybag/scheduler-app.git"
}
- register within express
var schedulerApp = require('scheduler-app');
app.use(schedulerApp('postgres://localhost/cater'))