This example shows how to import an external SVG file into a web page. Furthermore, the D3 zoom bahaviour can be used for zoom in/out the image.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adding APOC to Official Neo4j Docker Image | |
FROM neo4j:3.1 | |
ENV NEO4J_PLUGINS_PATH /var/lib/neo4j/plugins/ | |
ENV NEO4J_APOC_FILE apoc-3.1.0.3-all.jar | |
ENV NEO4J_APOC_URI https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.1.0.3/apoc-3.1.0.3-all.jar | |
RUN curl --fail --silent --show-error --location --output $NEO4J_APOC_FILE $NEO4J_APOC_URI \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
check process dropbox with pidfile /home/username/.dropbox/dropbox.pid | |
start program = "/home/username/dropbox.py start" | |
as uid username and gid username | |
stop program = "/home/username/dropbox.py stop" | |
as uid username and gid username | |
# Installed to /etc/monit/conf.d/dropbox-monit | |
# Assumes that https://www.dropbox.com/download?dl=packages/dropbox.py is installed at /home/username/dropbox.py |