Skip to content

Commit

Permalink
small README updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dmattia authored Jan 18, 2025
1 parent 89f268c commit f2522f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
pip install -r requirements.txt
sudo apt update
sudo apt install postgresql
createdb authorizedagent -h localhost -p 5432 -U postgres
createdb authorizedagent09 -h localhost -p 5432 -U postgres
python manage.py migrate
```

Create superuser named vscode with password `vscode`
```
python3 manage.py createsuperuser
python3 manage.py collectstatic
```

Run/deploy the app:
Expand All @@ -25,11 +24,12 @@ Add a `Covered Business`:
- Cb ID: 1234
- Discover Endpoint: https://drp.staging.transcen.dental/.well-known/data-rights.json
- API root Endpoint: https://drp.staging.transcen.dental
- Supported Actions: not needed, will be populated from well known endpoint
- Supported Actions: access
- Auth bearer token: 1234

Add a `User Identity` so we can submit privacy requests on their behalf:
- email is verified and `[email protected]`

You can view the keys used by the DRP to sign the requests by running `cat drp_aa_mvp/keys.json | jq` after the server starts up.
You can view the keys used by the DRP to sign the requests by running `cat /workspaces/osiraa/drp_aa_mvp/agents.json | jq ".[].verify_key"` after the server starts up.

We will want to use the `verify_key` value to verify that the signatures are valid.

0 comments on commit f2522f2

Please sign in to comment.