# Revue - Sendy sync: Railway hosting

By now, we should have all our items in place to start hosting our Revue Sendy script.

Let's do a quick recap of what we've built so far:

- [We wrote the sync plan](https://daily-dev-tips.com/posts/writing-a-revue-sync-plan/)
- [We collected and tested all APIs](https://daily-dev-tips.com/posts/revue-sendy-sync-collecting-the-apis/)
- [We started the project and added the Revue calls](https://daily-dev-tips.com/posts/revue-sendy-sync-project-setup-revue-calls/)
- [We added the Sendy calls](https://daily-dev-tips.com/posts/revue-sendy-sync-sendy-calls/)
- [We added the webhook routes](https://daily-dev-tips.com/posts/revue-sendy-sync-webhook-routes/)

The last bit is to bring everything together and test it out.

Seeing this project is only a reasonably simple node server, I decided to go with [Railway app](https://daily-dev-tips.com/posts/hosting-a-discord-bot-on-railway/). They provide a **free** and simple way to host these little scripts.

## Testing the scripts

Before pushing my live code on the system, I changed my scripts a bit.

> Note: It's more a safety thing than anything else at this point, and feel free to skip this step.

Instead of performing the API calls, I changed everything to `console.log` the responses so I could monitor if everything was working fine.

```js
fastify.post('/sendy-webhook', async function (request, reply) {
  reply.send({ data: request.body });
});
```

And the primary function is like this:

```js
(async () => {
  console.log('recurring script started');

  // commented out all the other things
})();
```

## Hosting on Railway app

The railway app is a new kid on the block, but it's pretty cool, and the best part is that it's free.

So head to [Railway](https://railway.app/) and click the new project button.

There you can pick the option to deploy from GitHub.

![Railway app deploy from GitHub option](https://cdn.hashnode.com/res/hashnode/image/upload/v1655618592385/Ksc5l0gM_.png)

The following steps will ask you to log in and authenticate with GitHub.

Once you go through these steps, pick the project we are working on.

![Picking the right project](https://cdn.hashnode.com/res/hashnode/image/upload/v1655618669331/leA1JPyx_.png)

In the next screen, you'll be given the option to deploy now or add variables.
I choose to add my variables already.

![Railway options for deployment](https://cdn.hashnode.com/res/hashnode/image/upload/v1655618739189/_PxYTaIdJ.png)

Clicking either option will start your project, and you will be able to add the variables.
Add all the ones you have in your `.env` file locally.

![Railway environment variables](https://cdn.hashnode.com/res/hashnode/image/upload/v1655618803619/lIS9t4hS3.png)

Once you save the variables, it will automatically redeploy your app.

Once deployed, you can open up the logs and see what's happening.

![Railway view logs](https://cdn.hashnode.com/res/hashnode/image/upload/v1655619074989/dgVWSixrd.png)

The logs should say something like this:

```json
recurring script started
{"level":30,"time":1655616707625,"pid":1,"hostname":"railway","msg":"Server listening at http://127.0.0.1:3000";}
```

However, this causes a little bit of an issue.
Railway creates a unique port for each project and listens to address `0.0.0.0`.

Let's head back to our app and modify the Fastify server.

```js
fastify.listen(
  { port: process.env.PORT || 3000, host: '0.0.0.0' },
  function (err, address) {
    if (err) {
      fastify.log.error(err);
      process.exit(1);
    }
  }
);
```

With this piece of code, we always take the port that Railway provides.

Once you commit and push the code, it will automatically start a new deployment.

However, the default railway app doesn't come with a domain, so we should quickly set one up.

Head over to Settings > Domains and add a Railway domain.

![Railway domain](https://cdn.hashnode.com/res/hashnode/image/upload/v1655619360081/WMFhIGFad.png)

Now we can also test the webhook and head over to the logs of this new deployment. You should see a random port now.

I then opened my API platform (Insomnia) and tested the webhook endpoint.

![Testing webhook endpoint calls in Insomnia](https://cdn.hashnode.com/res/hashnode/image/upload/v1655619463537/kUrsYRwoH.png)

They work! Excellent, we are all set from that side.

## Recurring script

Now that we have everything set up, you might have noticed we don't have the main script executed multiple times.

We want this to run every x time. I think in my case, once a day.

To achieve this, I'll add [`node-cron`](https://www.npmjs.com/package/node-cron) to do the magic for us.

Then we can add a cron command like this:

```js
cron.schedule('* * * * *', () => {
  console.log('running a task every minute');
});
```

If you start your server, you should start seeing messages every minute.

However, I want it to run every night at 2 AM, so I set up a single command like this.

```js
cron.schedule('0 2 * * *', () => {
  // our command
});
```

In this command, we'll put everything currently in our IIFE.

And with that setup, we are ready to go!

You can find the completed code on [GitHub](https://github.com/rebelchris/revue-sendy-sync).

## Finishing up

Now that we have our code finished, we need to do a couple of things.

- Sync our current users

It's essential to sync our users once-off, or else we might perform some weird actions.
In my case, I exported everyone from Sendy and manually imported them in Revue once-off.

- Change the webhooks to the new URL

Seeing our webhook is not set, we should change it to post to our Railway hosted app: `https://{your_app}.up.railway.app/sendy-webhook`.

### Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on [Facebook](https://www.facebook.com/DailyDevTipsBlog) or [Twitter](https://twitter.com/DailyDevTips1)
