We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i want to deploy golang with revel framework on railway app, but seems go install github.com/revel/cmd/revel@latest did not work
here's my nixpacks.toml, revel command is not found
name = "cms-app" version = "1.0.0"
nixPkgs = ["go", "git", "curl", "bash"]
[env] GO111MODULE = "on" CGO_ENABLED = 0 GOPATH = "/go" GOBIN = "/root/.nix-profile/bin"
[phases.setup] cmds = [ "echo 'Setting up environment...'", "which go", "go version", "export PATH=$PATH:/root/.nix-profile/bin", "go install github.com/revel/cmd/revel@latest", "revel version" ]
No response
environment is prod, because need to deploy it using railway
The text was updated successfully, but these errors were encountered:
Can you please share some errors that you are seeing. What does "did not work" mean?
Sorry, something went wrong.
No branches or pull requests
Is there an existing issue for this?
Describe the bug
i want to deploy golang with revel framework on railway app, but seems go install github.com/revel/cmd/revel@latest did not work
To reproduce
here's my nixpacks.toml, revel command is not found
name = "cms-app"
version = "1.0.0"
nixPkgs = ["go", "git", "curl", "bash"]
[env]
GO111MODULE = "on"
CGO_ENABLED = 0
GOPATH = "/go"
GOBIN = "/root/.nix-profile/bin"
[phases.setup]
cmds = [
"echo 'Setting up environment...'",
"which go",
"go version",
"export PATH=$PATH:/root/.nix-profile/bin",
"go install github.com/revel/cmd/revel@latest",
"revel version"
]
Expected behavior
No response
Environment
environment is prod, because need to deploy it using railway
The text was updated successfully, but these errors were encountered: