We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146d69a commit b00e701Copy full SHA for b00e701
README.md
@@ -20,6 +20,14 @@ npm start
20
```
21
This will run Goof locally, using a local mongo on the default port and listening on port 3001 (http://localhost:3001)
22
23
+Note: You *have* to use an old version of MongoDB version due to some of these old libraries' database server APIs. MongoDB 3 is known to work ok.
24
+
25
+You can also run the MongoDB server individually via Docker, such as:
26
27
+```sh
28
+docker run --rm -p 27017:27017 mongo:3
29
+```
30
31
## Running with docker-compose
32
```bash
33
docker-compose up --build
0 commit comments