all repos — caroster @ 4e9d21c0ca253718b3f38dcd46c4bfa17db1e3f0

[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});