I'm looking in IntelliJ for something like launcher by Eclipse?
However, is it possible to export the configuration in IntelliJ to file.
I would like to add the configuration to repo, to share it for the team.
I'm looking in IntelliJ for something like launcher by Eclipse?
However, is it possible to export the configuration in IntelliJ to file.
I would like to add the configuration to repo, to share it for the team.
Create and edit script launcher over Run/Debug Configuration - (1)
Check the share option (2),
so the script will be stored under $projectDir/.idea/runConfigurations (3)
By new projects modify .gitignore
to add the configurations:
!.idea
.idea/*
!.idea/runConfigurations
You can do this by pressing the "Share" checkbox in the upper right corner inside the "Run/debug configurations". A file with configurations will be generated.
well, that requires vcs and that repo has been closed. i need to move them from the closed repo to the new one.