Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woutslabbinck/vienna-2023
WIP
https://github.com/woutslabbinck/vienna-2023
Last synced: about 2 months ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/woutslabbinck/vienna-2023
- Owner: woutslabbinck
- Created: 2023-11-24T13:17:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-29T14:49:32.000Z (about 1 year ago)
- Last Synced: 2023-11-29T16:51:49.016Z (about 1 year ago)
- Language: TypeScript
- Size: 123 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vienna-2023
## UML sequence diagrams
Can be online visualised via [sequencediagram.org](https://sequencediagram.org/) or with the vscode extension [PlantUML](https://plantuml.com/).
### Owner set up a policy
![](img/owner-set-up-policy.svg)
### Shop gets data (data not signed)
![](img/shop-get-data-version-not-signing-data.svg)
## Code
How to run:```sh
npm i
```
Create a .env resource with WebID, username and password with a CSS (supporting client credentials):```env
WEB_ID=""
USER_NAME=""
PASSWORD=""
```Start the Interfaces (AuthZ Interface (server), Admin Interface (server))
```sh
npx ts-node runInterfaces.ts
```SolidLib shop adds policy flow (needs both admin and auth interfaces running)
```sh
npx ts-node adminFlow.ts
```SolidLib shop gets data flow
```sh
npx ts-node app.ts
```