Skip to content

Commit

Permalink
Merge pull request #123 from nzzdev/release-5.0.0
Browse files Browse the repository at this point in the history
Release 5.0.0
  • Loading branch information
benib committed Jun 27, 2018
2 parents 811d9a5 + 41f00a5 commit 43d4eee
Show file tree
Hide file tree
Showing 18 changed files with 1,808 additions and 1,546 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defaults: &defaults
working_directory: ~/q-server
docker:
- image: circleci/node:9
- image: circleci/node:10

version: 2
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9
10
12 changes: 12 additions & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ title: Installation
}
```
```json
{
"_id": "_design/tools",
"views": {
"usagePerUser": {
"reduce": "_sum",
"map": "function (doc) {\n if (doc.tool && doc.createdBy) {\n emit([doc.createdBy, doc.tool], 1);\n }\n if (doc.tool && doc.updatedBy) {\n emit([doc.updatedBy, doc.tool], 1);\n }\n}"
}
},
"language": "javascript"
}
```
```json
{
"_id": "_design/query-index",
"language": "query",
Expand Down
Loading

0 comments on commit 43d4eee

Please sign in to comment.