I am trying to make my development process as automatic as I can.
I am using maven and got the deploy to work by simply putting the jar in my server folder when building the project (like this).
This works fine, but I still have to restart my server manually. I found this solution to run a command after install.
I can run neo4j
to start the server, but can not find out how I can restart (or stop and then start). I tried neo4j restart
and got the following output:
This command is not supported by the Neo4j utility. Please try "Neo4j.bat help" for more info.
When running Neo4j.bat help
I get the following output:
Proper arguments for this command are: help console
Something does not seem right... I am using Neo4j version 2.2.0.
This could be a bad approach, if so let me know. How do you setup your environment when developing unmanaged extensions?