Boxer
Explore posts from serversCaddy in a monorepo?
I was following your template @Brody to deploy vite with Caddy https://github.com/brody192/vite-react-template/blob/main/Caddyfile in my monorepo but I think my nixpacks.toml is not getting picked up.
f78d75b5-8972-4d61-8517-22bbccefb41e
I created a file for my landing page in
deployments/landing-nixpacks.toml
But i noticed the configs in the service settings are not getting overriden :/34 replies
What's the best way to start services in a monorepo with a lot of services?
Looking at the docs I see commands like
npm run start:backend
so how does railway now which service is which? https://docs.railway.app/guides/monorepo#deploying-a-shared-monorepo
I have a turborepo with golang services in the following directory structure
/root
--/services
-- (golang services 1 folder each)
--/packages
--/apps
So now I am not sure how to start each monorepo service in each railway service79 replies
{"name":"TypeError","code":"ERR_INVALID_ARG_VALUE"} Calling API from another service in project
Hi, I'm trying to make a internal fetch API call to one of my services and it looks like it's erroring out with
{"name":"TypeError","code":"ERR_INVALID_ARG_VALUE"}
which is something I have not seen before.
Code:
This is only happening in PROD since my local env does work, I'm sure it has something to do with the BaseURL which is basically: nox.railway.internal
When checking the logs I see the first log I tested: [02:17:26.904] [info] here--url: nox.railway.internal/api/sellers/fba
and then it fails.
Am I missing something here?10 replies