Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renatospaka/neoflix
Golang implementation of Neoflix app (Neo4j)
https://github.com/renatospaka/neoflix
go golang neo4j neo4j-driver
Last synced: about 2 months ago
JSON representation
Golang implementation of Neoflix app (Neo4j)
- Host: GitHub
- URL: https://github.com/renatospaka/neoflix
- Owner: renatospaka
- Created: 2022-08-24T09:36:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-24T09:36:59.000Z (over 2 years ago)
- Last Synced: 2024-06-19T17:53:43.245Z (6 months ago)
- Topics: go, golang, neo4j, neo4j-driver
- Language: Go
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
= Building Neo4j Applications with Go
> Learn how to interact with Neo4j from Go using the Neo4j Go Driver
This repository accompanies the link:https://graphacademy.neo4j.com/courses/app-go/[Building Neo4j Applications with Go course^] on link:https://graphacademy.neo4j.com/[Neo4j GraphAcademy^].
For a complete walkthrough of this repository, link:https://graphacademy.neo4j.com/courses/app-go/[enroll now^].
== Setup
* Clone repository
* Update config.json with the connection details
[source,json]
----
{
"APP_PORT": 3000,
"NEO4J_URI": "neo4j://localhost:7687",
"NEO4J_USERNAME": "neo4j",
"NEO4J_PASSWORD": "letmein",
"JWT_SECRET": "secret",
"SALT_ROUNDS": 10
}
----* Start the project
----
go run ./cmd/neoflix
----== A Note on comments
You may spot a number of comments in this repository that look a little like this:
[source,java]
----
// tag::something[]
someCode()
// end::something[]
----We use link:https://asciidoc-py.github.io/index.html[Asciidoc^] to author our courses.
Using these tags means that we can use a macro to include portions of code directly into the course itself.From the point of view of the course, you can go ahead and ignore them.
### Neo4j Cypher Refcard 4.4
Neo4j Cypher Refcard 4.4