We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add rake task to run server attached: (for linux only, you can check start task for example of windows command)
# lib/tasks/neo4j.rake namespace :neo4j do task :console do %x[neo4j/bin/neo4j console] end end
Then
# Procfile neo4j: bundle exec rake neo4j:console
And it works!