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
CCM-17047: Add client , campaign and supplier name to Grafana dashboard (#543)
* emit metrics for supplier-allocator
* ensure that clientId and campaignId is never undefined when emiting metric
* use distinct the name for the new metric
* get unit tests to pass
* add a dummy supplier
* remove comments
* rename metric key variable in function
* expose groupId in allocate-handler lambda. Expose groupId and correct metrics in upsert-handler lambda. Add extra information in README
* correct check file format
* correct markdown errors
* correct markdown errors
* update lock file
* fix lint and unit test errors
* fix audit errors
* Revert "fix audit errors"
This reverts commit 2155558.
* address PR review comments
* add new line in group-id.ts
* update package-lock file
* fix linting and pact test error
* fix failing pact test
* fix build?
- In your `~/.bashrc` or `~/.zshrc` add the export `export AWS_PROFILE=supplier-dev`, or whichever profile you need
104
+
- In the project's root directory create an `.env` file based on the `.env.template` file and fill variables as needed.
105
+
- Create the file `~/.npmrc` with the contents:
106
+
107
+
```dsconfig
108
+
# Authenticate to GitHub Packages for github.com
109
+
//npm.pkg.github.com/:_authToken=<Insert your Github PAT (Personal Access Token)>
110
+
111
+
112
+
# Package is scoped under @org, set registry for that scope
113
+
@nhsdigital:registry=https://npm.pkg.github.com
114
+
```
115
+
116
+
- Install `node` (to run `npm install` and build the project)
117
+
- Install `aws cli` to be able to connect to AWS (needed for some tests)
118
+
- If AWS CLI calls are blocked by a firewall (e.g. Zscaler), you need to add the custom certificates in the location `/scripts/devcontainer/custom-ca-certs`
119
+
- Install `docker` or `Rancher` for containerisation
120
+
- You should open in a devcontainer or a Github workspaces. (In VSCode -> Open Command Palet -> "Dev containers: rebuild without cache and reopen in container")
121
+
- By default it will run `make config` when the container is first setup
0 commit comments