Not starting with custom location of main.go file
Can't start server on railway - main.go file is location in
{project_root}/cmd/{module_name}/main.go
I've tried to add custom build command of go build ./cmd/{module_name}/main.go
but it didn't help.Solution:Jump to solution
go build ./...
you can easily set the build and start command in a railway.json file
the start command is needed since your path results in a built binary named auth-ms
instead of out
like railway expects
```json
{...4 Replies
Project ID:
N/A
N/A
Solution
go build ./...
you can easily set the build and start command in a railway.json file
the start command is needed since your path results in a built binary named auth-ms
instead of out
like railway expects
tagging @ossset for visibility