-
When start Polypheny-DBusing its main-Class ( I didn't change anything after importing the project, and I got an error when running the startup class. Is it because I haven't configured anything? It doesn’t seem to be written in the official documentation. Hope to get help! QAQ |
Beta Was this translation helpful? Give feedback.
Answered by
vogti
Feb 23, 2024
Replies: 1 comment 7 replies
-
Hi @Heachy I see that you are using IntelliJ we have provided a very small setup guide for this. After having followed these steps you can use our gradle run-dionfigurations within IntelliJ to start Polypheny. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Heachy The problem is, that you execute the main-Method without building Polypheny-DB first. Polypheny is a modular system consisting of multiple moduls / plugins. The error you get indicates, that the system is unable to find a plugin that provides an implementation for the catalog. To avoid this, either run Polypheny by executing
./gradlew run
or./gradlew runReset
or use the autoconfigured run configurations in IntelliJ (as mentioned by @hennlo). Please find below a screenshot where to find these run configurations.