Entry Point of Intellij IDEA Community Edition
Answered
Hi,
I have a question regarding the Entry Point location of the Intellij IDEA Community Edition program found at the repository: https://github.com/JetBrains/intellij-community.
Question: Where can I find the Entry Point of the Intellij IDEA Community Edition?
I was able to build the program and it runs fine but I'm not sure where I can find the Entry Point, the IDEA Run Configuration specifies the entry point it is the "Main.java" from the package "com.intellij.idea", I found this Main.java file but I'm not sure if this is the entry point as it gives an error on run if the class-path module is not "intellij.idea.community.main".

Kind regards,
Darie-Dragos Mitoiu
Please sign in to leave a comment.
If we'll check the Linux idea.sh script, we can find:
So this is exactly the class you've mentioned above - com.intellij.idea.Main.
The file location is src/com/intellij/idea/Main.java