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
+13Lines changed: 13 additions & 0 deletions
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!
0 commit comments