You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an express app and have done the following as per the readme instructs.
var express = require('express');
var Agenda = require('agenda');
var agendaUI = require('agenda-ui');
var app = express();
var agenda = new Agenda(...)
app.use('/agenda-ui', agendaUI(agenda, {poll: 1000}));
then from the root of my express app:
~> cd node_modules/agenda-ui
npm install
but then there was no bower install in the app/ directory. so I couldn't run the bower install
When I go to: localhost//agenda-ui I get 404. I'm not quite sure what's going on.
Could you instruct as how I can run agenda-ui against my express app that uses agenda. ...? thanks
The text was updated successfully, but these errors were encountered:
agenda.on('ready', function () {
// we need to do this to resolve #18
agenda._db = agenda._collection;
app.use('/agenda-ui', agendaUI(agenda, {poll: 60000}));
});
I'm confused as how this module is used.
I have an express app and have done the following as per the readme instructs.
then from the root of my express app:
~> cd node_modules/agenda-ui
but then there was no bower install in the app/ directory. so I couldn't run the bower install
When I go to: localhost//agenda-ui I get 404. I'm not quite sure what's going on.
Could you instruct as how I can run agenda-ui against my express app that uses agenda. ...? thanks
The text was updated successfully, but these errors were encountered: