├── .env.example ├── .github └── workflows │ ├── scheduled.yaml │ └── starter.yaml ├── README.md └── pages └── api ├── example.js └── example.ts /.env.example: -------------------------------------------------------------------------------- 1 | APP_KEY= 2 | -------------------------------------------------------------------------------- /.github/workflows/scheduled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulphys/nextjs-cron/HEAD/.github/workflows/scheduled.yaml -------------------------------------------------------------------------------- /.github/workflows/starter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulphys/nextjs-cron/HEAD/.github/workflows/starter.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulphys/nextjs-cron/HEAD/README.md -------------------------------------------------------------------------------- /pages/api/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulphys/nextjs-cron/HEAD/pages/api/example.js -------------------------------------------------------------------------------- /pages/api/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulphys/nextjs-cron/HEAD/pages/api/example.ts --------------------------------------------------------------------------------