Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/decentralized-identity/universal-registrar-frontend

Frontend web UI for Universal Registrar.
https://github.com/decentralized-identity/universal-registrar-frontend

decentralized-identifiers universal-registrar wg-id

Last synced: 2 months ago
JSON representation

Frontend web UI for Universal Registrar.

Awesome Lists containing this project

README

        

Frontend for DIF Universal Registrar
------------------------------------

See https://github.com/decentralized-identity/universal-registrar/

# Running the Frontend for the Universal Registrar

## Prepare

Install all dependencies

npm install

## Running in Dev

Following command will run the frontend on your local machine at http://localhost:7082/

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 universalregistrar/universal-registrar-frontend
docker run -p 80:80 universalregistrar/universal-registrar-frontend