-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Allow users to define Jetbrains plugins to be installed on a given project #6508
Labels
Comments
atduarte
changed the title
Allow users to define plugins to be installed
Allow users to define Jetbrains plugins to be installed on a given project
Nov 2, 2021
Relates to: #6706 and #6576 (comment) |
As far as I understand JB has a canonical way for that:
|
Found this page that might be useful: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using Jetbrains Remote Dev what runs locally is just a Thin Client. If you want to install plugins you must install them in the backend—that runs in Gitpod.
As some plugins require the IDE to restart we should have them installed during the initialization of the workspace.
To do so, and focusing for now on the plugins that are directly associated with a project (not the user), we will need to change the gitpod.yml spec.
Note that a given plugin may be compatible with only some Jetbrains IDE "flavours" (e.g. Scala plugin only works on IDEA).
To install a plugin, run
bin/remote-dev-server.sh installPlugins PROJECT_PATH pluginId
. [1]The text was updated successfully, but these errors were encountered: