diff --git a/deps.edn b/deps.edn index 3f870335..a3524d81 100644 --- a/deps.edn +++ b/deps.edn @@ -1,7 +1,7 @@ {:deps {org.clojure/clojure {:mvn/version "1.11.3"} org.clojure/core.async {:mvn/version "1.6.681"} com.fluree/db {:git/url "https://github.com/fluree/db.git" - :git/sha "f5f76fb2373b712aeee96574e1bbc2cd0277fce1"} + :git/sha "0595cc7b130ac50da42a8808f998bce94cf0420a"} com.fluree/json-ld {:git/url "https://github.com/fluree/json-ld.git" :git/sha "74083536c84d77f8cdd4b686b5661714010baad3"} diff --git a/resources/independent-nexus-server-config.jsonld b/resources/independent-nexus-server-config.jsonld new file mode 100644 index 00000000..c758dbab --- /dev/null +++ b/resources/independent-nexus-server-config.jsonld @@ -0,0 +1,62 @@ +{ + "@context": { + "@base": "https://ns.flur.ee/config/main/", + "@vocab": "https://ns.flur.ee/system#", + "profiles": { + "@container": [ + "@graph", + "@index" + ] + } + }, + "@id": "standaloneServer", + "@graph": [ + { + "@id": "localDiskStorage", + "@type": "Storage", + "filePath": "/opt/fluree-server/data" + }, + { + "@id": "connection", + "@type": "Connection", + "parallelism": 8, + "cacheMaxMb": 60000, + "commitStorage": { + "@id": "localDiskStorage" + }, + "indexStorage": { + "@id": "localDiskStorage" + }, + "primaryPublisher": { + "@type": "Publisher", + "storage": { + "@id": "localDiskStorage" + } + }, + "defaults": { + "indexing": { + "reindexMinBytes": 1000000, + "reindexMaxBytes": 10000000000 + } + } + }, + { + "@id": "consensus", + "@type": "Consensus", + "consensusProtocol": "standalone", + "maxPendingTxns": 512, + "connection": { + "@id": "connection" + } + }, + { + "@id": "http", + "@type": "API", + "httpPort": 8090, + "maxTxnWaitMs": 180000, + "corsOrigins": [ + "*" + ] + } + ] +}