https://www.kaggle.com/datasets/konivat/tree-of-life
uvicorn Main:api --reload
docker run -d -it --rm \
--name Neo4jForProject3 \
-p 7474:7474 \
-p 7687:7687 \
-v $PWD/data:/import \
-v $PWD/neo4j/database:/data \
-v $PWD/neo4j/plugins:/plugins \
-v $PWD/neo4j/conf:/conf \
-e NEO4J_AUTH=neo4j/s3cr3t \
-e NEO4JLABS_PLUGINS='["apoc","graph-data-science"]' \
neo4j:latest
''' docker run -d -it --rm --name Neo4jForProject3 -p 7474:7474 -p 7687:7687 -v $PWD/data:/import -v $PWD/neo4j/database:/data -v $PWD/neo4j/plugins:/plugins -v $PWD/neo4j/conf:/conf -e NEO4J_AUTH=neo4j/s3cr3t -e NEO4JLABS_PLUGINS='["apoc","graph-data-science"]' neo4j:latest '''
- Set into 'plugins' folder redirection
- Config to allow plugins' procedures in 'conf' folder redirection
- From:
- In order to load local file instead of having a public git with distant acces to CSV files
- In order to save loaded database and not having to reload it all the time