All Projects → neo4jrb → neo4j-rake_tasks

neo4jrb / neo4j-rake_tasks

Licence: MIT License
Rake tasks for managing Neo4j. Tasks allow for starting, stopping, and configuring

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to neo4j-rake tasks

neo4j-faker
Use faker cypher functions to generate demo and test data with cypher
Stars: ✭ 30 (+130.77%)
Mutual labels:  neo4j, graph-database
boltex
Elixir driver for the neo4j bolt protocol
Stars: ✭ 27 (+107.69%)
Mutual labels:  neo4j, graph-database
database-journal
Databases: Concepts, commands, codes, interview questions and more...
Stars: ✭ 50 (+284.62%)
Mutual labels:  neo4j, graph-database
seabolt
Neo4j Bolt Connector for C
Stars: ✭ 37 (+184.62%)
Mutual labels:  neo4j, graph-database
prov-db-connector
PROV Database Connector
Stars: ✭ 15 (+15.38%)
Mutual labels:  neo4j, graph-database
Bolt sips
Neo4j driver for Elixir
Stars: ✭ 204 (+1469.23%)
Mutual labels:  neo4j, graph-database
CyFHIR
A Neo4j Plugin for Handling HL7 FHIR Data
Stars: ✭ 39 (+200%)
Mutual labels:  neo4j, graph-database
Neo4j Php Ogm
Neo4j Object Graph Mapper for PHP
Stars: ✭ 151 (+1061.54%)
Mutual labels:  neo4j, graph-database
ml-models
Machine Learning Procedures and Functions for Neo4j
Stars: ✭ 63 (+384.62%)
Mutual labels:  neo4j, graph-database
neo4j.cr
Pure-Crystal implementation of Neo4j's Bolt protocol
Stars: ✭ 29 (+123.08%)
Mutual labels:  neo4j, graph-database
Movies Python Bolt
Neo4j Movies Example application with Flask backend using the neo4j-python-driver
Stars: ✭ 197 (+1415.38%)
Mutual labels:  neo4j, graph-database
NeoClient
🦉 Lightweight OGM for Neo4j which support transactions and BOLT protocol.
Stars: ✭ 21 (+61.54%)
Mutual labels:  neo4j, graph-database
Neo4j Etl
Data import from relational databases to Neo4j.
Stars: ✭ 165 (+1169.23%)
Mutual labels:  neo4j, graph-database
Helicalinsight
Helical Insight software is world’s first Open Source Business Intelligence framework which helps you to make sense out of your data and make well informed decisions.
Stars: ✭ 214 (+1546.15%)
Mutual labels:  neo4j, graph-database
Neo4j 3d Force Graph
Experiments with Neo4j & 3d-force-graph https://github.com/vasturiano/3d-force-graph
Stars: ✭ 159 (+1123.08%)
Mutual labels:  neo4j, graph-database
angular-neo4j
Neo4j Bolt driver wrapper for Angular
Stars: ✭ 18 (+38.46%)
Mutual labels:  neo4j, graph-database
Neo4j Streams
Neo4j Kafka Integrations, Docs =>
Stars: ✭ 126 (+869.23%)
Mutual labels:  neo4j, graph-database
Reddit Detective
Play detective on Reddit: Discover political disinformation campaigns, secret influencers and more
Stars: ✭ 129 (+892.31%)
Mutual labels:  neo4j, graph-database
Public-Transport-SP-Graph-Database
Metropolitan Transport Network from São Paulo mapped in a NoSQL graph database.
Stars: ✭ 25 (+92.31%)
Mutual labels:  neo4j, graph-database
liquigraph
Migrations for Neo4j
Stars: ✭ 122 (+838.46%)
Mutual labels:  neo4j, graph-database

Rake tasks for managing a Neo4j database with your Ruby project

Actively Maintained

Rake Tasks

The neo4j-rake_tasks gem includes some rake tasks which make it easy to install and manage a Neo4j server in the same directory as your Ruby project.

WARNING: NOT FOR PRODUCTION USE! These rake tasks are intended to make installing and managing a Neo4j server in development and testing easier. Since authentication is disabled by default, this gem should not be used in production. If you need Neo4j in production, installation can be as easy as downloading, unzipping, and running the executable.

NOTE: The neo4j-rake_tasks gem used to be included automatically with the neo4j-core gem (which is in turn included automatically in the neo4j gem). This is no longer the case because not everybody needs these tasks.

neo4j:install

Arguments

version and environment (environment default is development)

Example

rake neo4j:install[community-latest,development]

... or to get a specific version

rake neo4j:install[community-2.2.3,development]

Description

Downloads and installs Neo4j into $PROJECT_DIR/db/neo4j/<environment>/

neo4j:config

Arguments

environment and port

Example

rake neo4j:config[development,7000]

Description

Configure the port which Neo4j runs on. This affects the HTTP REST interface and the web console address.

neo4j:start

Arguments

environment

Example

rake neo4j:start[development]

Description

Start the Neo4j server

neo4j:start_no_wait

Arguments

environment

Example

rake neo4j:start_no_wait[development]

Description

Start the Neo4j server with the start-no-wait command

neo4j:stop

Arguments

environment

Example

rake neo4j:stop[development]

Description

Stop the Neo4j server

neo4j:indexes

Arguments

environment

Example

rake neo4j:indexes[development]

Description

Print out the indexes in the database

neo4j:constraints

Arguments

environment

Example

rake neo4j:constraints[development]

Description

Print out the constraints in the database

neo4j:reset_yes_i_am_sure

Arguments

environment

Example

rake neo4j:reset_yes_i_am_sure[development]

Description

  • Stop the Neo4j server
  • Deletes all files matching [db-root]/data/graph.db/*
  • Deletes all files matching [db-root]/data/log/*
  • Start the Neo4j server
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].