-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #700 from BIDMCDigitalPsychiatry/mc-update-db-prereq
Add MongoDB support & testing instructions
- Loading branch information
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,16 @@ Once you've deployed the `LAMP-server` and `LAMP-database`, you'll be able to us | |
|
||
All data is encrypted before communication between your browser or the app to and from your newly deployed server. No data will be communicated with any other server, including the default API server at [api.lamp.digital](http://api.lamp.digital) or other third party services. | ||
|
||
1. Verify the status of the CouchDB database. | ||
1. Verify the status of the database. | ||
|
||
```bash | ||
curl -k https://admin:[email protected]/ | ||
``` | ||
or | ||
```bash | ||
mongo 'mongodb://username:password@databaselocation:port/databasename' | ||
``` | ||
If the `mongo` command cannot be found, you can also try `mongosh` | ||
|
||
2. Verify the status of the LAMP Platform API Server. | ||
|
||
|