Is it possible to specify multiple services in a railway.toml file?
For example if I want to setup a backend service and a frontend service, can I do that from one file or is it 100% scoped to just one service?
# backend service
[build]
builder = "nixpacks"
buildCommand = "go build -o output"
[deploy]
startCommand = "./output"
restartPolicyType = "never"
--
# frontend service
[build]
builder = "nixpacks"
buildCommand = "npm run build"
[deploy]
startCommand = "node ./build/index.js"
restartPolicyType = "never"