{"id":15061618,"url":"https://github.com/neo4jrb/neo4j-rake_tasks","last_synced_at":"2025-04-10T09:15:52.156Z","repository":{"id":34848356,"uuid":"38841755","full_name":"neo4jrb/neo4j-rake_tasks","owner":"neo4jrb","description":"Rake tasks for managing Neo4j. Tasks allow for starting, stopping, and configuring","archived":false,"fork":false,"pushed_at":"2023-06-19T08:09:50.000Z","size":54774,"stargazers_count":13,"open_issues_count":27,"forks_count":19,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-03-25T21:13:12.075Z","etag":null,"topics":["graph-database","neo4j","neo4j-server","rake","ruby"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neo4jrb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"code_of_conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-07-09T19:47:23.000Z","updated_at":"2024-06-18T22:46:56.974Z","dependencies_parsed_at":"2024-06-18T22:57:23.711Z","dependency_job_id":null,"html_url":"https://github.com/neo4jrb/neo4j-rake_tasks","commit_stats":{"total_commits":193,"total_committers":12,"mean_commits":"16.083333333333332","dds":0.5284974093264249,"last_synced_commit":"b79b7c0cdb3ea690346c81cf00042b7c56f2b20a"},"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4jrb%2Fneo4j-rake_tasks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4jrb%2Fneo4j-rake_tasks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4jrb%2Fneo4j-rake_tasks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4jrb%2Fneo4j-rake_tasks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neo4jrb","download_url":"https://codeload.github.com/neo4jrb/neo4j-rake_tasks/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248190548,"owners_count":21062285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["graph-database","neo4j","neo4j-server","rake","ruby"],"created_at":"2024-09-24T23:22:39.378Z","updated_at":"2025-04-10T09:15:52.119Z","avatar_url":"https://github.com/neo4jrb.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nRake tasks for managing a Neo4j database with your Ruby project\n\n[![Actively Maintained](https://img.shields.io/badge/Maintenance%20Level-Actively%20Maintained-green.svg)](https://gist.github.com/cheerfulstoic/d107229326a01ff0f333a1d3476e068d)\n\nRake Tasks\n==========\n\nThe ``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.\n\nWARNING: 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.\n\nNOTE: 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.\n\n## neo4j:install\n\n### Arguments\n\n``version`` and ``environment`` (environment default is `development`)\n\n### Example\n\n``rake neo4j:install[community-latest,development]``\n\n... or to get a specific version\n\n``rake neo4j:install[community-2.2.3,development]``\n\n### Description\n\n  Downloads and installs Neo4j into ``$PROJECT_DIR/db/neo4j/\u003cenvironment\u003e/``\n\n## neo4j:config\n\n### Arguments\n\n``environment`` and ``port``\n\n### Example\n\n``rake neo4j:config[development,7000]``\n\n### Description\n\n  Configure the port which Neo4j runs on.  This affects the HTTP REST interface and the web console address.\n\n\n## neo4j:start\n\n### Arguments\n\n``environment``\n\n### Example\n\n``rake neo4j:start[development]``\n\n### Description\n\n  Start the Neo4j server\n\n\n## neo4j:start_no_wait\n\n### Arguments\n\n``environment``\n\n### Example\n\n``rake neo4j:start_no_wait[development]``\n\n### Description\n\n  Start the Neo4j server with the ``start-no-wait`` command\n\n## neo4j:stop\n\n### Arguments\n\n``environment``\n\n### Example\n\n``rake neo4j:stop[development]``\n\n### Description\n\n  Stop the Neo4j server\n\n\n## neo4j:indexes\n\n### Arguments\n\n``environment``\n\n### Example\n\n``rake neo4j:indexes[development]``\n\n### Description\n\n  Print out the indexes in the database\n\n\n\n## neo4j:constraints\n\n### Arguments\n\n``environment``\n\n### Example\n\n``rake neo4j:constraints[development]``\n\n### Description\n\n  Print out the constraints in the database\n\n\n\n## neo4j:reset_yes_i_am_sure\n\n### Arguments\n\n``environment``\n\n### Example\n\n``rake neo4j:reset_yes_i_am_sure[development]``\n\n### Description\n\n  - Stop the Neo4j server\n  - Deletes all files matching `[db-root]/data/graph.db/*`\n  - Deletes all files matching `[db-root]/data/log/*`\n  - Start the Neo4j server\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo4jrb%2Fneo4j-rake_tasks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneo4jrb%2Fneo4j-rake_tasks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo4jrb%2Fneo4j-rake_tasks/lists"}