all repos — caroster @ 5c1602bae85f3ece02c4bc84f57ec47443c66eca

[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  url: env("STRAPI_URL", "http://localhost:1337"),
 7  app: {
 8    keys: env.array("APP_KEYS"),
 9  },
10  cron: {
11    enabled: true,
12    tasks: cronTasks,
13  },
14});