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
.env
.gitignore
I have this .gitignore:
/.dist /.tmp /.env ... and a lot more
and as you can see I'm ignoring .env file.
I'm using this command:
cargo watch --ignore "some" --ignore "some/another" -x run
But if I change the .env file obviously it doesn't re-run.
Is there a way to tell it to watch the .env file?
Something like:
cargo watch --ignore "some" --ignore "some/another" --watch ".env" -x run
The text was updated successfully, but these errors were encountered:
not yet in cargo watch. we do have negative filters in watchexec, !pattern
!pattern
Sorry, something went wrong.
Thanks. Can we leave this open until?
I was also curious about this.
No branches or pull requests
I have this
.gitignore
:and as you can see I'm ignoring
.env
file.I'm using this command:
But if I change the
.env
file obviously it doesn't re-run.Is there a way to tell it to watch the
.env
file?Something like:
The text was updated successfully, but these errors were encountered: