This is a Microsoft Visual Code plugin for Inmanta
Eliminate Complexity.
End-to-end orchestration of applications and networks.
Inmanta Documentation on Read the Docs
The extension makes your life easier by highlighting syntax keywords or the Inmanta language.
When you hover an element while pressing Ctrl
, an overview of its Entity type is shown. If you click it (while still having Ctrl
pressed) you can navigate to the definition of the entity.
:bulb: To work properly, this feature requires the Inmanta Language Server to be running: In the inmanta extension configuration (
ctrl+, > extensions > inmanta
), ensure thatLS
is enabled.
The extension will run a pre-compilation every time you save your file. Making it easier for you to spot syntax and basic model errors. When hovering the problematic bit, an explaination message is shown, and more details can be found in the Output panel (when selecting Inmanta Server Language in the expandable list on the right).
:bulb: To work properly, this feature requires the Inmanta Language Server to be running: In the inmanta extension configuration (
ctrl+, > extensions > inmanta
), ensure thatLS
is enabled.
The extension adds a button in the upper right corner of the editing panel of any inmanta model file (ending in .cf
): Export to server. This buttons allows you to easily export the currently opened model to a running Inmanta server. Note that for this to work, you need to have previously configured the server and added the following in the .inmanta
configuration file at the root of the project:
[config]
environment=f2f6ac46-10a2-4e75-897d-b91c51c78df2 # Replace this by the right environment uuid
[compiler_rest_transport]
host=10.0.0.102 # Replace this by the address of the host
port=8888 # Replace this by the port on which the server is listening
[cmdline_rest_transport]
host=10.0.0.102 # Replace this by the address of the host
port=8888 # Replace this by the port on which the server is listening
You can find the settings of the extension, in the Settings panel, under Extensions > Inmanta
.
The extension currently has three settings:
The plugin uses the Python extension to change environments. This can be done by clicking on the active environment in the bottombar and then selecting the environment to activate.
Please use the default setting for "python.interpreter.infoVisibility": "OnPythonRelated".
The selected Python environment will be used to install the Inmanta Language server.
The Python extension sometimes crashes when opening an untrusted workspace for the first time. A workaround to this issue is to restart VS Code. See related discussion here.
If compilation fails with the message "no module named x" where x is a Python module, you might need to clean up the virtual environments used by the compiler. This issue can be caused when you open a project in vscode that you previously compiled manually, or when you change the path for the language server venv. To clean up the virtual environments, remove the .env directory in the Inmanta project directory as well as the directory specified in the Compiler Venv option in the extension's settings. Then restart vscode.
Syntax updates and publish in marketplace
Initial release
Enjoy!