June 2021 Summaries
2 posts from Railway
Filter
Month:
Year:
Post Summaries
Back to Blog
Deploying Ghost on Railway allows users to build and run blogs, magazines, and journals using an open-source publishing platform. The process involves clicking a button, entering environment variables, and hitting deploy, which automagically provisions a MySQL database and runs required database migrations. Environment variables such as Cloudinary URL and Mailgun SMTP login are optional but recommended for full functionality. Users can use pre-bundled themes or add custom themes by modifying the package.json file and pushing changes to Github. With Ghost on Railway, users can write and publish posts, invite teammates, set up a newsletter and subscriptions, and even attach a custom domain to their instance.
Jun 11, 2021
431 words in the original blog post.
The text discusses the integration of GitHub Actions with Railway, a platform for deploying applications. Github Actions allow users to automate various parts of their development workflow, such as building and testing apps. To deploy an app on Railway using GitHub Actions, users need to create a project token, which is then added to repository secrets in GitHub. A workflow is created that triggers when code is pushed to the main branch, pulling the latest version of the Railway CLI docker image and deploying the app. The `RAILWAY_TOKEN` must be kept secret, while the service ID can be passed freely as an environment variable or part of the deploy command.
Jun 04, 2021
477 words in the original blog post.