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
601 changes: 468 additions & 133 deletions publisher/server_only/package-lock.json

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions publisher/server_only/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
},
"dependencies": {
"axios": "^0.23.0",
"body-parser": "^1.20.3",
"cookie-session": "^1.4.0",
"ejs": "^3.1.7",
"express": "^4.18.2",
"nocache": "^3.0.1"
"express": "^4.21.2",
"nocache": "^3.0.1",
"path-to-regexp": "^8.2.0"
},
"devDependencies": {
"eslint": "^7.29.0",
Expand Down
7 changes: 7 additions & 0 deletions publisher/standard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ docker run -it --rm -p 3000:3000 \
uid2-publisher-standard
```


If this command does not work in Powershell because of the `-e` variable, try running in Command Prompt with quotes around each variable like so:
```
docker build . -t uid2-publisher-server
docker run -it --rm -p 3000:3000 -e "UID2_BASE_URL=https://operator-integ.uidapi.com" -e "UID2_API_KEY={INTEG_API_KEY}" -e "UID2_CLIENT_SECRET={CLIENT_SECRET}" uid2-publisher-server
```

The following table lists the environment variables that you must specify to start the application.

| Parameter | Data Type | Description |
Expand Down
Loading
Loading