Skip to content

Commit

Permalink
Fix pivoql incompatibility (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmi authored Nov 2, 2021
1 parent 9a117e7 commit 5d14e64
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci && npm install --no-save mongodb@3 @seald-io/nedb
- run: npm ci
- run: npm run ci
5 changes: 3 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ ricochet
By default, data are *stored in memory* so if you restart the server, all data
are lost. The default configuration is for *development purpose only*.
See [server configuration](#server-configuration) for more customization and how
to use persistent stores.
to use persistent storages.

Now the server is running so you can create a new ricochet *site*. To do it,
you can use the Rest API with curl:
Expand Down Expand Up @@ -94,7 +94,8 @@ This is the **ONLY** chance to get it so keep it for later and **keep it secret*

In the meantime you should have received a mail with a link you must visit
to confirm the site creation. This is a security measure to prevent abuse. Click
the link to validate the *site* creation.
the link to validate the *site* creation. If you've not yet configured any mail
provider, check out the server logs to read the confirmation link.

Now, your server is ready and a site exists. You can follow the next steps to create
a new site project.
Expand Down
169 changes: 160 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"nodemailer": "^6.4.16",
"pino": "^6.7.0",
"pino-http": "^5.3.0",
"pivotql-compiler-javascript": "0.0.1",
"pivotql-compiler-mongodb": "^0.2.0",
"pivotql-parser-expression": "^0.2.0",
"pivotql-compiler-javascript": "^0.1.0",
"pivotql-compiler-mongodb": "^0.3.0",
"pivotql-parser-expression": "^0.3.0",
"socket.io": "^4.1.2",
"vm2": "^3.9.3",
"yargs": "^16.2.0"
Expand All @@ -73,11 +73,13 @@
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.7",
"@seald-io/nedb": "^2.2.0",
"babel-jest": "^26.6.3",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"mongodb": "^3.7.3",
"nodemon": "^2.0.6",
"pino-pretty": "^4.3.0",
"pino-tiny": "^1.0.0",
Expand Down

0 comments on commit 5d14e64

Please sign in to comment.