Mozzy
Mozzy
Explore posts from servers
RRailway
Created by Mozzy on 8/12/2024 in #✋|help
tls: failed to verify certificate: x509: certificate signed by unknown authority
I am learning Go by building a Discord bot and an API service. I am getting the following error when deploying commands to Discord from the built container:
tls: failed to verify certificate: x509: certificate signed by unknown authority
tls: failed to verify certificate: x509: certificate signed by unknown authority
I know very little about networking. Any pointers? Repo: https://github.com/leonlarsson/bfstats-bot-go
8 replies
RRailway
Created by Mozzy on 8/3/2024 in #✋|help
Skill issue with `railway run`
Having a skill issue. I want to run a .js script remotely on Railway. railway run npm run script works, but this is a node command that uses --env-file, and the .env file is not present after building the app. Can I just run any remote file directly?
23 replies
RRailway
Created by Mozzy on 7/20/2023 in #✋|help
Having an issue with the first deploy from a commit
Hello. I am trying to run a discord.js app on Railway. It works great, most times. However, when a deploy gets triggered on the production branch and the app deploys, some code stops working as expected. In my app, I have the following code:
import { some_http_header_value } from "../config.js";
fetch(url, { headers: { "some-header": some_http_header_value } });
import { some_http_header_value } from "../config.js";
fetch(url, { headers: { "some-header": some_http_header_value } });
some_http_header_value is either empty or not there at all, causing the fetch to fail. However, if I just redeploy the build on Railway, it works as expected. Might there be some weird caching issue? config.js exists and works in other areas of the app. Still investigating on my side, but any obvious ideas as to what's happening?
35 replies