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
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,6 +177,19 @@ To be able to change and test `taas-es-processor` locally you can follow the nex
177
177
2. Run `taas-es-processor` separately from the source code. As `npm run services:up` already run all the dependencies for both `taas-apis` and for`taas-es-processor`. The only thing you need to dofor running `taas-es-processor` locally is clone the [taas-es-processor](https://github.com/topcoder-platform/taas-es-processor) repository and inside `taas-es-processor` folder run:
178
178
- `nvm use` - to use correct Node version
179
179
- `npm run install`
180
+
- Create `.env` file with the next environment variables. Values for**Auth0 config** should be shared with you on the forum.<br>
181
+
182
+
```bash
183
+
# Auth0 config
184
+
AUTH0_URL=
185
+
AUTH0_AUDIENCE=
186
+
AUTH0_CLIENT_ID=
187
+
AUTH0_CLIENT_SECRET=
188
+
```
189
+
190
+
- Values from this file would be automatically used by many `npm` commands.
191
+
- ⚠️ Never commit this file or its copy to the repository!
192
+
180
193
- `npm run start`
181
194
182
195
## NPM Commands
@@ -207,6 +220,7 @@ To be able to change and test `taas-es-processor` locally you can follow the nex
207
220
|`npm run cov`| Code Coverage Report. |
208
221
|`npm run migrate`| Run any migration files which haven't run yet. |
209
222
| `npm run migrate:undo` | Revert most recent migration. |
223
+
| `npm run demo-payment-scheduler` | Create 1000 Work Periods Payment records in with status "scheduled" and various "amount" |
0 commit comments