Skip to content

cayleygraph/web

Repository files navigation

Cayley Web

Docker build status TravisCI build status

Web interface for Cayley

Demo Screenshot

Table of Contents

Run

Run with Docker

docker run -p 3000:80 cayleygraph/web

Modify Server URL

By default, the server URL is set to http://localhost:64210 (the default Cayley server URL). To change it pass SERVER_URL environment variable. For example:

docker run -p 3000:80 --env SERVER_URL="http://example.org:64210" cayleygraph/web

Features

  • Query Editor
  • Data Editor
  • Data Browser

Technologies Used

Develop

  1. Make sure to have Node.js, Yarn and a modern web browser
  2. Clone the repository
  3. Get into the cloned directory
  4. Install dependencies
    yarn
  5. Run Cayley HTTP Server
    cayley http
  6. Start the development server
    yarn start
    
  7. Run tests
    yarn test