mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
- include all collections (commented out) - refactored neo4j import script - use of .env file for (additional) configurations / configuration overrides - lots of fiddeling with neo4j cql files and cypher shell
16 lines
717 B
Bash
16 lines
717 B
Bash
# Neo4J Settings
|
|
# NEO4J_USERNAME='neo4j'
|
|
# NEO4J_PASSWORD='letmein'
|
|
|
|
# Import Settings
|
|
# On Windows this resolves to C:\Users\dornhoeschen\AppData\Local\Temp\mongo-export (MinGW)
|
|
IMPORT_PATH='/tmp/mongo-export/'
|
|
IMPORT_CHUNK_PATH='/tmp/mongo-export/splits/current-chunk.json'
|
|
|
|
IMPORT_CHUNK_PATH_CQL='/tmp/mongo-export/splits/current-chunk.json'
|
|
# On Windows this path needs to be windows style since the cypher-shell runs native - note the forward slash
|
|
# IMPORT_CHUNK_PATH_CQL='C:/Users/dornhoeschen/AppData/Local/Temp/mongo-export/splits/current-chunk.json'
|
|
|
|
IMPORT_CYPHERSHELL_BIN='cypher-shell'
|
|
# On Windows use something like this
|
|
# IMPORT_CYPHERSHELL_BIN='C:\Program Files\neo4j-community\bin\cypher-shell.bat' |