neo4j-contrib / graphgist-cms

http://graphgist.neo4j.com/
67 stars 24 forks source link

============================ Neo4j GraphGist Browser

This repository is a GraphGist content browser powered by Neo4j. All GraphGist content is consumed from a Neo4j REST API endpoint built using Neo4j Swagger.

Neo4j GraphGist Template

Prerequisites

Usage

Follow the directions below for each component of the platform.

Database

GraphGist API

Development

Codeship

This project is deployed via Codeship to Heroku. To deploy, do NOT push to Heroku directly, but rather simply push to Github and Codeship will deploy (if the specs pass)

Client-side Javascript

The client side is minified and concatenated using gulp.js. If you make any changes to client-side javascripts you need to run this process for your changes to take effect. This can be done with the command:

gulp scripts

You may need to either add ./node_modules/.bin to your $PATH or run ./node_modules/.bin/gulp scripts

Specs

This application has some tests written with mocha.js under the test/ directory.

To run the specs:

npm test

Also, since some of these specs connect to various internet sites (to test the downloading of graphgists), the sepia package is used to record these HTTP interactions as test fixtures. Consult the sepia package for details