19 Replies
Project ID:
318bdceb-bd11-4a39-90f9-3090fc272fe0
318bdceb-bd11-4a39-90f9-3090fc272fe0
Was just going to post. Seems like there's an issue with building in general from the past 15 mins or so.
Also getting a lot of 504 gateway-timeout issues from cloudflare when accessing the railway api.
I don't think that's because I'm getting the same error from last week
Could be unrelated as well.
Are you getting any builds through?
let me try with other deploy
you are trying to start your server during build
How do I prevent it from starting on its own?
are you starting the server in your build script?
im dont sure 🫣
"start": "node build/main.js",
"dev": "ts-node-dev src/main.ts",
"build": "ts-node src/main.ts",
The script is by default so I understand that the Start script is being used
yes you are starting your server in the build script
how i can do to not do thath?
have ts-node build not run the ts file
I have to change:
"start": "node build/main.js",
by:
"start": "ts-node build/main.js",
?
that can work, but also remove the build script
thanks you a lot, im currently trying right now, but bbgum is right
i just redeploy a already deploy proyect and got the same issue
your issue is a config issue, you where starting your server duing build
hello brody, now its completed but thorw this error:
node:internal/modules/cjs/loader:1143
throw err;
^
Error: Cannot find module './main.js'
show me your scripts please