Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions DeveloperSetupGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ This guide will take you through the development environment setup for each of t
5. [pims (Pharmacy Information Management System)](https://github.com/mcode/pims)
6. [rems-smart-on-fhir](https://github.com/mcode/rems-smart-on-fhir)
7. [rems-intermediary](https://github.com/mcode/rems-intermediary.git)
8. [rems-directory](https://github.com/mcode/rems-directory.git)

### Expected Functionality

Expand Down Expand Up @@ -223,6 +224,7 @@ Note: The default ruby that comes with Mac may not install the right package ver
git clone https://github.com/mcode/rems-smart-on-fhir.git rems-smart-on-fhir
git clone https://github.com/mcode/rems-setup.git rems-setup
git clone https://github.com/mcode/rems-intermediary.git rems-intermediary
git clone https://github.com/mcode/rems-directory.git rems-directory

# Update the Submodules
cd rems-admin
Expand Down
15 changes: 15 additions & 0 deletions EndToEndSetupGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Follow this guide if you would like to start each application locally **without*
- [rems-admin](#rems-admin)
- [pims](#pims)
- [rems-smart-on-fhir](#rems-smart-on-fhir)
- [rems-directory](#rems-directory)
- [rems-intermediary](#rems-intermediary)
- [Verify the REMS Integration Prototype is working](#verify-the-rems-integration-prototype-is-working)

Expand Down Expand Up @@ -59,6 +60,7 @@ Follow this guide if you would like to start each application locally **without*
git clone https://github.com/mcode/pims.git
git clone https://github.com/mcode/rems-smart-on-fhir.git
git clone https://github.com/mcode/rems-setup.git
git clone https://github.com/mcode/rems-directory.git
git clone https://github.com/mcode/rems-intermediary.git
```

Expand Down Expand Up @@ -248,6 +250,19 @@ npm install
npm start
```

### rems-directory

```bash
# Navigate into directory already cloned from GitHub
cd rems-directory

# Install dependencies
npm install

# Start the application
npm start
```

### rems-intermediary

```bash
Expand Down
9 changes: 9 additions & 0 deletions PrototypeRepositoriesAndCapabilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,15 @@
- Stores data in MongoDB
- Docker scripts to launch the entire stack

- mcode/rems-directory

- REMS Directory
- Node/TypeScript
- Hosts interfaces needed for updating CDS Hooks and FHIR endpoints within REMS Intermediary
- REMS SPL Zip file containing all active REMS programs
- API similar to openFDA
- NDC endpoint for querying REMS data based on NDC

### Other Components

- KeyCloak
Expand Down
1 change: 1 addition & 0 deletions SimpleSetupGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ The following REMS components will be deployed in Docker locally:
5. [pims (Pharmacy Information Management System)](https://github.com/mcode/pims)
6. [rems-smart-on-fhir](https://github.com/mcode/rems-smart-on-fhir)
7. [rems-intermediary](https://github.com/mcode/rems-intermediary.git)
8. [rems-directory](https://github.com/mcode/rems-directory.git)

## Quick Setup

Expand Down
Loading