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
My project runs off a bash file, and so to run my app I run the command ./run -d (d being a flag for "development").
./run -d
d
Rather than running a .go file, this should be able to have a custom command at runtime.
.go
The text was updated successfully, but these errors were encountered:
I'm willing to work on this if there's nothing in the works!
Sorry, something went wrong.
For others looking here, you can already do that using the scripts key (It can be found in the readme config sample).
scripts
scripts: - type: before command: echo hello before every reload output: true
The above runs the command on every reload. if you need it to run once, you can include global as follows:
scripts: - type: before command: echo hello before any other command on startup only global: true output: true ``
No branches or pull requests
My project runs off a bash file, and so to run my app I run the command
./run -d
(d
being a flag for "development").Rather than running a
.go
file, this should be able to have a custom command at runtime.The text was updated successfully, but these errors were encountered: