How do I setup configuration for running a Vertx s...
# vertx
m
How do I setup configuration for running a Vertx server in Intellij IDEA? Is there a plugin?
d
What do you mean? You simply create an
Application
run configuration with your application entry point (your own or vert.x's
Launcher
if you rely on it). Alternatively you can create a run configuration for your build system, e.g. create a
Gradle
run configuration that executes the
run
task (from the application plugin). Otherwise I did not get what you meant.
m
Got it, thanks @David Silva
👍 1