Skip to content

decentralized-identity/universal-resolver-frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1bcb30c · Apr 7, 2025
Aug 10, 2021
Feb 19, 2021
Feb 27, 2025
Feb 28, 2025
Jan 22, 2020
Feb 14, 2018
Jan 22, 2025
Apr 7, 2025
Aug 11, 2023
Mar 9, 2023
Feb 2, 2021
Feb 14, 2022
Feb 2, 2021

Repository files navigation

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