Skip to content
joxxoxo edited this page Oct 15, 2012 · 4 revisions

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!

Clone this wiki locally