How to Publish LogSeq notes on your custom domain using Replit or Vercel

https://youtu.be/JVhGmpP4qpo

You can use Replit and Vercel to publish LogSeq notes.

You can also use them to publish your logseq notes to your custom domain or subdomain for free. They also provide their subdomain in case you do not have a domain.
Both of these services provide an SSL certificate for free.

My notes are published using Vercel here:
https://notes.prashants.in/

Thanks, just what I was looking for!

That’s great, agam! I hope it helps you

Is it easy to publish new notes here though? Or do you have to git push to your repo everytime you make a new note and then Vercel rebuilds it?

Hi Dalton! You will have to git commit and git push everytime you want to update your site with your new notes. At least it adds a check before you put something on the web.

If you want to make it easy, you can create a small script to automate running the three commands (I know not the easiest thing if you are not a programmer).

In essence, just create a bash file (if you are on Windows) or a shell file (Mac and Linux) with these three lines:

git add .
git commit -m "new build for the website"
git push origin

keep this in your public directory and run it once you want to push the notes.