Skip to content

Commit

Permalink
Examples now point to a cloud instance with the example data
Browse files Browse the repository at this point in the history
  • Loading branch information
jexp committed May 7, 2019
1 parent 651bd8a commit 5b596f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion color.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<script>
const elem = document.getElementById('3d-graph');
const driver = neo4j.v1.driver("bolt://localhost", neo4j.v1.auth.basic("neo4j", "test"));
const driver = neo4j.v1.driver("bolt+routing://90bfd895.databases.neo4j.io", neo4j.v1.auth.basic("got", "got"),{encrypted: true});
const session = driver.session();
const start = new Date()
session
Expand Down
2 changes: 1 addition & 1 deletion incremental.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div id="3d-graph"></div>

<script>
const driver = neo4j.v1.driver("bolt://localhost", neo4j.v1.auth.basic("neo4j", "test"));
const driver = neo4j.v1.driver("bolt+routing://90bfd895.databases.neo4j.io", neo4j.v1.auth.basic("got", "got"),{encrypted: true});
const Graph = ForceGraph3D()(document.getElementById('3d-graph')).graphData({ nodes: [], links: []});

const session = driver.session();
Expand Down
2 changes: 1 addition & 1 deletion particles.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<script>
const elem = document.getElementById('3d-graph');
const driver = neo4j.v1.driver("bolt://localhost", neo4j.v1.auth.basic("neo4j", "test"));
const driver = neo4j.v1.driver("bolt+routing://90bfd895.databases.neo4j.io", neo4j.v1.auth.basic("got", "got"),{encrypted: true});
const session = driver.session();
const start = new Date()
session
Expand Down
2 changes: 1 addition & 1 deletion weights.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<script>
const elem = document.getElementById('3d-graph');
const driver = neo4j.v1.driver("bolt://localhost", neo4j.v1.auth.basic("neo4j", "test"));
const driver = neo4j.v1.driver("bolt+routing://90bfd895.databases.neo4j.io", neo4j.v1.auth.basic("got", "got"),{encrypted: true});
const session = driver.session();
const start = new Date()
session
Expand Down

0 comments on commit 5b596f6

Please sign in to comment.