-
Hi , Is there any documentation to run vertx gateway locally in eclipse or intellij ? I could not find any documentation for the same. |
Beta Was this translation helpful? Give feedback.
Answered by
msavy
Jul 4, 2021
Replies: 2 comments 6 replies
-
This should help
https://stackoverflow.com/a/24441722/1038499
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Here are some instructions for IntelliJ IDEA. I'm sure you can translate this successfully into Eclipse.
Let me know if that works for you. or <component name="ProjectRunConfigurationManager">
<configuration default="false" name="Vert.x Gateway" type="Application" factoryName="Application">
<option name="MAIN_CLASS_NAME" value="io.apiman.gateway.platforms.vertx3.ApimanLauncher" />
<module name="apiman-gateway-platforms-vertx3" />
<option name="PROGRAM_PARAMETERS" value="run io.apiman.gateway.platforms.vertx3.verticles.InitVerticle --conf $USER_HOME$/tmp/conf-es.json" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component> |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
msavy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here are some instructions for IntelliJ IDEA. I'm sure you can translate this successfully into Eclipse.
io.apiman.gateway.platforms.vertx3.ApimanLauncher
(extendsio.vertx.core.Launcher
).run io.apiman.gateway.platforms.vertx3.verticles.InitVerticle --conf /Users/msavy/tmp/conf-es.json
-- change the path to be your config, of course. I recommend using all in-memory components for development and debugging (unless you are explicitly debugging a particular storage or component implementation).apiman-gateway-platforms-vertx3
Let me know if that w…