Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/animo/afj-demo-for-twitter
https://github.com/animo/afj-demo-for-twitter
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/animo/afj-demo-for-twitter
- Owner: animo
- Created: 2021-08-19T14:51:31.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-14T09:18:10.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T02:21:25.187Z (over 1 year ago)
- Language: TypeScript
- Size: 147 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# afj-demo-for-twitter
This is an accompaniment to the medium article "Issuing a Verifiable Credential in 7 Easy Steps".
## How to Run
1. Go to http://play-with-von.vonx.io/
2. Click "Start"
3. In the Top left click "ADD NEW INSTANCE", a terminal window will show up
4. Run the following commands```sh
git clone https://github.com/animo/afj-demo-for-twitter
cd afj-demo-for-twitter
docker build -t afj-demo . && docker run -it --rm afj-demo
```If you have docker and git installed you can also run the above commands directly on your computer. The Play with VON just provides a already setup environment to run the demo.
### Apple Silicon Issues
Since there is no build for libindy for arm64 on debian we have to specify that in the `docker build` part.
```sh
docker build -t afj-demo . --platform linux/amd64 && docker run -it --rm afj-demo
```