You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow this guide if you would like to start each application without using Docker. Each must be launched separately (in a separate terminal window).
3
-
4
-
### Other Guides:
5
-
6
-
[Simple Set Up](SimpleSetupGuide.md) - This guide will get you up and running quickly with a demo environment for using the prototype locally. If you want to make changes or contribute to the codebase, see the detailed developer guide below.
7
-
8
-
[Developer Environment Set Up](DeveloperSetupGuide.md) - Follow this guide if you are a developer and intend on making code changes to the REMS project. This guide follows a much more technical set up process and is fully featured.
9
-
10
-
[SSL Setup](SSLSetupGuide.md) - Follow this guide to enable SSL on the various REMS applications.
11
-
1
+
# Local Developer Setup Guide (No Docker)
2
+
>Follow this guide if you would like to start each application locally **without** using Docker. Each must be launched in a sperate terminal window.
- Navigate into directory already cloned from GitHub [www.github.com/mcode/test-ehr](https://www.github.com/mcode/test-ehr)
127
+
```bash
128
+
cd test-ehr
129
+
130
+
# Run
131
+
gradle bootRun
132
+
```
133
+
134
+
```bash
135
+
# Load Data (in separate window, also in repo folder)
136
+
gradle loadData
137
+
```
106
138
107
-
`cd test-ehr`
108
-
109
-
- Run
110
-
111
-
`gradle bootRun`
112
-
113
-
- Load Data (in separate window, also in repo folder)
114
-
115
-
`gradle loadData`
116
-
117
-
### crd-request-generator
118
-
119
-
- Navigate into directory already cloned from GitHub [www.github.com/mcode/crd-request-generator](https://www.github.com/mcode/crd-request-generator)
120
-
121
-
`cd crd-request-generator`
122
-
123
-
- Setup
139
+
### request-generator
124
140
125
-
`npm install`
141
+
- Navigate into directory already cloned from GitHub [www.github.com/mcode/request-generator](https://www.github.com/mcode/request-generator)
142
+
```bash
143
+
cd request-generator
126
144
127
-
- Run
145
+
# Setup
146
+
npm install
128
147
129
-
`npm start`
148
+
# Run
149
+
npm start
150
+
```
130
151
131
152
## Core Applications
132
153
133
-
### REMS
134
-
- Navigate into directory already cloned from GitHub [www.github.com/mcode/REMS](https://www.github.com/mcode/REMS)
135
-
136
-
`cd REMS`
137
-
138
-
- Submodule Initialization
139
-
140
-
`git submodule update --init`
141
-
154
+
### rems-admin
155
+
- Navigate into directory already cloned from GitHub [www.github.com/mcode/rems-admin](https://www.github.com/mcode/rems-admin)
142
156
- Update env.json
143
157
- Add your VSAC key to env.json as the default value for `VSAC_API_KEY`
144
-
145
-
- Setup
146
-
158
+
```bash
159
+
cd rems-admin
160
+
161
+
# Submodule Initialization
162
+
git submodule update --init
163
+
164
+
# Setup
147
165
`npm install`
148
166
149
-
- Run
150
-
151
-
`npm start`
167
+
# Run
168
+
npm start
169
+
```
152
170
153
171
### pims
154
172
- Navigate into directory already cloned from GitHub [www.github.com/mcode/pims](https://www.github.com/mcode/pims)
173
+
```bash
174
+
cd pims
175
+
```
176
+
177
+
Backend
178
+
```bash
179
+
# Navigate to the backend directory
180
+
cd backend
155
181
156
-
`cd pims`
157
-
158
-
- Backend
159
-
- Navigate to the backend directory
160
-
161
-
`cd backend`
162
-
- Setup
163
-
164
-
`npm install`
165
-
- Run
182
+
# Setup
183
+
npm install
166
184
167
-
`npm start`
185
+
#Run
186
+
npm start
187
+
```
168
188
169
-
- Frontend
170
-
- Navigate to the frontend directory
171
-
172
-
`cd frontend`
173
-
- Setup
174
-
175
-
`npm install`
176
-
- Run
177
-
- Linux or Mac
178
-
179
-
`npm start`
180
-
- Windows
181
-
182
-
`PORT=5050 npm start`
183
-
184
-
### dtr
185
-
- Navigate into directory already cloned from GitHub [www.github.com/mcode/dtr](https://www.github.com/mcode/dtr)
186
-
187
-
`cd dtr`
188
-
189
-
- Setup
190
-
191
-
`npm install`
192
-
193
-
- Run
189
+
Frontend
190
+
```bash
191
+
# Navigate to the frontend directory
192
+
cd frontend
193
+
194
+
# Setup
195
+
npm install
194
196
195
-
`npm start`
197
+
# Run
198
+
PORT=5050 npm start
199
+
```
196
200
197
201
### rems-smart-on-fhir
198
-
- Navigate into directory already cloned from GitHub [www.github.com/mcode/rems-smart-on-fhir](https://www.github.com/mcode/rems-smart-on-fhir)
199
-
200
-
`cd rems-smart-on-fhir`
202
+
- Navigate into directory already cloned from GitHub [https://www.github.com/mcode/rems-smart-on-fhir](https://www.github.com/mcode/rems-smart-on-fhir)
203
+
```bash
204
+
# Navigate into directory already cloned from GitHub
0 commit comments