all repos — caroster @ 68c50e7913a1f063dadf3e3822d4cc0d9c7a91af

[Octree] Group carpool to your event https://caroster.io

backend/config/server.ts (view raw)

 1import cronTasks from "./cron-tasks";
 2
 3export default ({ env }) => ({
 4  host: env("HOST", "0.0.0.0"),
 5  port: env.int("PORT", 1337),
 6  app: {
 7    keys: env.array("APP_KEYS"),
 8  },
 9  cron: {
10    enabled: true,
11    tasks: cronTasks,
12  },
13});