https://github.com/singhhp1069/authonomy-demo
Authonomy demo based on authonomy ssi service and sdk.
https://github.com/singhhp1069/authonomy-demo
Last synced: about 1 year ago
JSON representation
Authonomy demo based on authonomy ssi service and sdk.
- Host: GitHub
- URL: https://github.com/singhhp1069/authonomy-demo
- Owner: singhhp1069
- Created: 2024-01-07T12:56:12.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-08T20:19:57.000Z (over 2 years ago)
- Last Synced: 2025-02-09T12:43:03.941Z (over 1 year ago)
- Language: Vue
- Size: 135 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Authonomy Demo
## Build the project
clone the repository
```sh
git clone git@github.com:singhhp1069/authonomy-demo.git
```
### Build the service, frontend and run the serve
```sh
cd ..
cp .env.example .env (set the .env)
npm install
```
.env for the backend looks like
```sh
AUTHONOMY_APP_DID="did:key:z6MkmrniEq3Cg7bv21BVbX8qkgJUPsAT6yPcBXoMKBvYtMAu"
AUTHONOMY_APP_SECRET="ebfd2798-d90c-4684-bd27-9fdf737d2013"
AUTHONOMY_SERVICE_URL=http://localhost:8081
APP_PORT=3000
```
start the service
```sh
npm start
access it on http://localhost:{PORT}
```