8000 GitHub - dbredvick/slater-next
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

dbredvick/slater-next

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting started

It's very easy to get started with Slater and deploy your first Next.js cron job.

Install Slater Vercel integration

Head to https://vercel.com/integrations/slater and click the "Add Integration" button. Select "all projects" and follow through the signup prompts.

At the end, this will kick off an email to your email address associated with your Vercel account.

You need to "claim" your account to finalize the integration by clicking the link in your email.

Add Slater to your Next.js app

To add your first cron job in a Next.js app, we need to make some code changes.

You'll also need to install Slater dependencies in your Next.js app.

yarn add @slaterjs/next

or

npm install @slaterjs/next

then create pages/api/slater/[...slater].js file with the following contents:

const config = {
  queues: [
    {
      name: 'helloWorld',
      schedule: '0 7 * * *', // 7AM GMT
      handler: async (event, success, failure) => {
        try {
          const results = await fetch(
            'https://jsonplaceholder.typicode.com/posts/1'
          );
          const data = await results.json();
          if (results.ok) {
            return success(data);
          } else {
            return failure(data);
          }
        } catch (err) {
          return failure(err); // sends 500
        }
      },
    },
  ],
};

export default slater(config);

Deploy to production

Slater only picks up production changes, so make sure you're pushing your Vercel changes all the way to produciton.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0