























In this post, we go over the process of deploying and maintaining a Ghost (a free and open-source publishing platform) instance connected to a MySQL database on Railway!
Ghost is an open-source publishing platform for building and running blogs, magazines, and journals. You can choose from an array of free and paid themes from their marketplace or even build your own. Ghost also allows you to send newsletters and monetize your blog by setting up subscriptions using Stripe.
The company behind Ghost offers a hosted version starting at $9/month but you can also self-host Ghost. At Railway, we provide a free one-click deploy for Ghost using a MySQL database which we automagically provision for you.
To deploy your Ghost instance on Railway, simply click the button above (source code), enter the mentioned environment variables and hit deploy. The required MySQL database will be automagically provisioned and the required database migrations will be run for you.
The environment variables we ask you to enter are all optional but we highly recommend entering them to run a full-fledged Ghost blog.
By default, we've bundled two themes (Casper and Lyra) with the Ghost starter. If you'd like to use a different theme (take Pico as an example), here are the steps you need to follow:
package.json file.{
...
dependencies: {
"pico": "github:TryGhost/Pico#main"
...
}
}
themes.sh file.themes=(
casper
lyra
pico
)
...
💡 Do not add a theme directly using the Ghost UI. While it will appear to work initially, the install will not persist due to Railway's ephemeral filesystem.

And with that you should have all the information you need to set up your blog on Railway using Ghost. You should be able to write and publish posts, invite teammates, set up a newsletter and subscriptions. You can even attach a custom domain to your Ghost instance.
If you have any suggestions for more open-source self-hosted solutions you'd like to see guides for, let us know on Discord. Or even better, submit a pull request to our starters repository on Github!
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。