WIP: Neo4j
This commit is contained in:
parent
fce9b88136
commit
35009b403c
|
@ -2272,6 +2272,14 @@ message:
|
||||||
compile: "nekoc main.neko",
|
compile: "nekoc main.neko",
|
||||||
run: "neko main",
|
run: "neko main",
|
||||||
template: `$print("Hello, world!\\n");
|
template: `$print("Hello, world!\\n");
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
neo4j: {
|
||||||
|
name: "Neo4j",
|
||||||
|
setup: `cp -R /etc/neo4j conf && sed -i "s#/var/lib/neo4j/data#$PWD/data#; s#/var/log/neo4j#$PWD/logs#" conf/neo4j.conf`,
|
||||||
|
repl: `NEO4J_CONF="$PWD/conf" neo4j console`,
|
||||||
|
main: "main.cypher",
|
||||||
|
template: `RETURN "Hello, world!"
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
nickle: {
|
nickle: {
|
||||||
|
|
|
@ -16,6 +16,7 @@ ubuntu_ver="$(lsb_release -rs)"
|
||||||
ubuntu_name="$(lsb_release -cs)"
|
ubuntu_name="$(lsb_release -cs)"
|
||||||
|
|
||||||
curl -sSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
|
curl -sSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
|
||||||
|
curl -sSL https://debian.neo4j.com/neotechnology.gpg.key | apt-key add -
|
||||||
curl -sSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
|
curl -sSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
|
||||||
curl -sSL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
|
curl -sSL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
|
||||||
curl -sSL https://downloads.ceylon-lang.org/apt/ceylon-debian-repo.gpg.key | apt-key add -
|
curl -sSL https://downloads.ceylon-lang.org/apt/ceylon-debian-repo.gpg.key | apt-key add -
|
||||||
|
@ -34,6 +35,7 @@ tee -a /etc/apt/sources.list.d/custom.list >/dev/null <<EOF
|
||||||
deb [arch=amd64] https://storage.googleapis.com/download.dartlang.org/linux/debian stable main
|
deb [arch=amd64] https://storage.googleapis.com/download.dartlang.org/linux/debian stable main
|
||||||
deb https://cloud.r-project.org/bin/linux/ubuntu ${ubuntu_name}-${cran}/
|
deb https://cloud.r-project.org/bin/linux/ubuntu ${ubuntu_name}-${cran}/
|
||||||
deb https://deb.nodesource.com/${nodesource} ${ubuntu_name} main
|
deb https://deb.nodesource.com/${nodesource} ${ubuntu_name} main
|
||||||
|
deb https://debian.neo4j.com stable latest
|
||||||
deb https://dist.crystal-lang.org/apt crystal main
|
deb https://dist.crystal-lang.org/apt crystal main
|
||||||
deb https://dl.hhvm.com/ubuntu ${ubuntu_name} main
|
deb https://dl.hhvm.com/ubuntu ${ubuntu_name} main
|
||||||
deb https://dl.yarnpkg.com/debian/ stable main
|
deb https://dl.yarnpkg.com/debian/ stable main
|
||||||
|
|
|
@ -36,6 +36,9 @@ mysql-server
|
||||||
# Neko
|
# Neko
|
||||||
neko
|
neko
|
||||||
|
|
||||||
|
# Neo4j
|
||||||
|
neo4j
|
||||||
|
|
||||||
# Nickle
|
# Nickle
|
||||||
nickle
|
nickle
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue