Configuring the odo CLI
odo provides a smart completion of command parameters based on user input. For this to work, odo needs to integrate with the executing shell.
Procedure
To disable completion:
Run:
Ignoring files or patterns
You can configure a list of files or patterns to ignore by modifying the .odoignore
file in the root directory of your application. This applies to both and odo watch
.
If the .odoignore
file does not exist, the .gitignore
file is used instead for ignoring specific files and folders.
To ignore files, any files with the .js
extension, and the folder tests
, add the following to either the .odoignore
or the file:
The .odoignore
file allows any glob expressions.