Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
01-24-2020 04:20 AM
With Neo4j Desktop
Neo4j browser guides are available from a browser for example via the command:
http://localhost:XXXX/browser/?cmd=play&arg=query-template
Can we use this server, adding to it custom web pages ?
Is there any documentation available?
Where should I store (on my windows sytem/neo5j desktop) the files?
Thank you very much
Solved! Go to Solution.
01-24-2020 09:14 AM
I did a deep dive into hosting neo4j guides not long ago. Last I looked the default guide is inside one of the JAR files, which should be left untouched.
However, there are two options I know of for adding your own guides
I am currently hosting a guide file on in an Amazon Web Services (AWS) S3 bucket. Here are the CORS configuration settings I ended up using
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
I'm interested in hearing feedback from others about the right CORS to use with S3 for Neo4j guides since my first few attempts should have worked but didn't, and by the time I had a working configuration I had learned more than I ever wanted to know about CORS and browser communications. (long story short)
how to build guides is covered here
01-24-2020 09:14 AM
I did a deep dive into hosting neo4j guides not long ago. Last I looked the default guide is inside one of the JAR files, which should be left untouched.
However, there are two options I know of for adding your own guides
I am currently hosting a guide file on in an Amazon Web Services (AWS) S3 bucket. Here are the CORS configuration settings I ended up using
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
I'm interested in hearing feedback from others about the right CORS to use with S3 for Neo4j guides since my first few attempts should have worked but didn't, and by the time I had a working configuration I had learned more than I ever wanted to know about CORS and browser communications. (long story short)
how to build guides is covered here
01-27-2020 08:15 AM
Thank You Very much Joel
All the sessions of the conference are now available online