Source: startup/index.js

  1. /**
  2. * @module startup
  3. */
  4. const downloadService = require("../download");
  5. const recache = require("../cache/recache");
  6. const scheduler = require("../scheduler");
  7. /**
  8. * Initialise scheduler, remove outdated export archives
  9. * and recache all content.
  10. */
  11. const initialise = async () => {
  12. // Schedule recurring tasks
  13. scheduler.scheduleAllTasks();
  14. // Update content after start-up
  15. downloadService.deleteExportFiles();
  16. await recache.recacheAll();
  17. };
  18. module.exports = {
  19. initialise,
  20. };