Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 months 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 (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-02-19T20:14:08.000Z (11 months ago)
- Last Synced: 2024-04-14T04:46:09.215Z (9 months ago)
- Topics: decentralized-identifiers, universal-resolver, wg-id
- Language: JavaScript
- Homepage: https://uniresolver.io/
- Size: 1.07 MB
- Stars: 24
- Watchers: 23
- 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 -p 80:80 universalresolver/universal-resolver-frontend