Browse Source

Update default mongodb uri (#536)

The default MongoDB URI for radiks should start with 'mongodb' rather than 'MongoDB', following the standard connecting string format
merge-stacks-repo-docs
Godwin Gabriel 5 years ago
committed by GitHub
parent
commit
b339bdb174
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      _develop/radiks-setup.md

4
_develop/radiks-setup.md

@ -47,7 +47,7 @@ The easiest way to run `radiks-server` is to use the pre-packaged `node.js` serv
```bash
yarn global add radiks-server
```
The default port for Mongodb is `27017`; your instance may be configured differently. By default, Radiks-server will use `'MongoDB://localhost:27017/radiks-server'` as the `MongoDB_URI` value. This is suitable for local testing, but in production, you'll want to change the hostname and possibly the database name.
The default port for Mongodb is `27017`; your instance may be configured differently. By default, Radiks-server will use `'mongodb://localhost:27017/radiks-server'` as the `MongoDB_URI` value. This is suitable for local testing, but in production, you'll want to change the hostname and possibly the database name.
3. Start the `radiks-server` in the command line to confirm your installation.
@ -209,4 +209,4 @@ The `maxLimit` option is the maximum `limit` field used inside the mongo queries
## Where to go next
Creating models for your application's data is where radiks truly becomes helpful. To learn how to use models, see the [Create and use models](radiks-models.html) section.
Creating models for your application's data is where radiks truly becomes helpful. To learn how to use models, see the [Create and use models](radiks-models.html) section.

Loading…
Cancel
Save