all repos — caroster @ eb701b6613d4a7a6c86f7adcf42341b4abc6726f

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