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. 2
      _develop/radiks-setup.md

2
_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 ```bash
yarn global add radiks-server 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. 3. Start the `radiks-server` in the command line to confirm your installation.

Loading…
Cancel
Save