https://github.com/decentralized-identity/universal-resolver-frontend
Frontend web UI for Universal Resolver.
https://github.com/decentralized-identity/universal-resolver-frontend
decentralized-identifiers universal-resolver wg-id
Last synced: about 1 year ago
JSON representation
Frontend web UI for Universal Resolver.
- Host: GitHub
- URL: https://github.com/decentralized-identity/universal-resolver-frontend
- Owner: decentralized-identity
- License: apache-2.0
- Created: 2018-02-14T10:27:38.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2025-04-07T19:25:10.000Z (about 1 year ago)
- Last Synced: 2025-04-12T08:17:54.627Z (about 1 year ago)
- Topics: decentralized-identifiers, universal-resolver, wg-id
- Language: JavaScript
- Homepage: https://uniresolver.io/
- Size: 1.09 MB
- Stars: 25
- Watchers: 22
- Forks: 25
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Frontend for DIF Universal Resolver
-----------------------------------
See https://github.com/decentralized-identity/universal-resolver/
# Running the Frontend for the Universal Resolver
## Prepare
Install all dependencies
npm install
## Running in Dev
Following command will run the frontend on your local machine at http://localhost:7081/
npm run dev
## Running in Prod
Production build and creating & runnig a docker container. The frontend will be accessible at http://localhost:80/
npm run build
docker build -f ./docker/Dockerfile . -t universalresolver/universal-resolver-frontend
docker run -it -p 7081:7081 -e BACKEND_URL="http://localhost:8080" universalresolver/universal-resolver-frontend