You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 rivejä
256 B

  1. const cronTasks = require("./cron-tasks");
  2. module.exports = ({ env }) => ({
  3. host: env('HOST', '0.0.0.0'),
  4. port: env.int('PORT', 1337),
  5. app: {
  6. keys: ['ASGHH324SD#','DAHJSWABBS@#'],
  7. },
  8. cron: {
  9. enabled: true,
  10. tasks: cronTasks,
  11. },
  12. });