Sfdev
Astro + Railway - Using Astro Starter Blog Kit
Hi All,
I'm trying to deploy the Astro Starter Kit: Blog via a Github connection (Just testing deploying to Railway as I normally use Vercel). Although the overall project has deployed, accessing the Public URL gets a 502 Bad Gateway (Application failed to respond). I've read the other support articles for Astro<>Railway - however, applying those doesn't seem to work for this project? Likely something I'm doing 🙂
Wondering if anyone has additional thoughts or config - e.g., package.json, astro.config.ms, etc.. Current astro.config.ms
Wondering if anyone has additional thoughts or config - e.g., package.json, astro.config.ms, etc.. Current astro.config.ms
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
site: "https://example.com",
integrations: [mdx(), sitemap(), tailwind()],
});
package.json
{
"name": "virtual-venus",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/mdx": "^3.1.3",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.13.2",
"tailwindcss": "^3.4.9",
"typescript": "^5.5.4"
}
}
Thanks in advance!10 replies
Unable to use Railway to 'develop' a Wordpress site with local files
While you can use a template to deploy a wordpress side, and then modfy/update within WP, you're unable to access the local files and/or work on those files locally (in IDE) from what I can see and test. Is that incorrect? If so, how do you then setup Railway for local WP Files access and push to Railway?
Project id - 8275f423-4c13-41b6-9500-c301a1042a86
12 replies