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
go run -some argument main.go
Hii there is any configuration if I want to execute code something like
go run -tags dynamic main.go
NOT
go run main.go -tags dynamic
my current project.json
project.json
... "arm_serve": { "executor": "@nx-go/nx-go:serve", "options": { "main": "apps/svc-auth/cmd/main.go", "arguments": [ "-tags dynamic" ] } } ...
The executor would execute go run cmd/main.go -tags dynamic, but what I want is go run -tags dynamic cmd/main.go
go run cmd/main.go -tags dynamic
go run -tags dynamic cmd/main.go
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Is this related to this package.
In my understanding if you do not use nx or npm to run you program than there is nothing that can be implemented in here.
nx
npm
Sorry, something went wrong.
I expect to use nx arm_serve {GO_APP}, so I ask maybe this package would be able to do it(?) For now I run my app using navite go run.
nx arm_serve {GO_APP}
I think you can manipulate the main option
"arm_serve": { "executor": "@nx-go/nx-go:serve", "options": { "main": "-tags dynamic cmd/main.go" } } ...```
No branches or pull requests
Hii there is any configuration if I want to execute code something like
NOT
my current
project.json
The executor would execute
go run cmd/main.go -tags dynamic
, but what I want isgo run -tags dynamic cmd/main.go
Thank you in advance!
The text was updated successfully, but these errors were encountered: