Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/decentralized-identity/universal-registrar-frontend
- Owner: decentralized-identity
- License: apache-2.0
- Created: 2019-11-15T12:30:57.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-27T18:27:55.000Z (10 months ago)
- Last Synced: 2024-04-14T04:46:09.609Z (9 months ago)
- Topics: decentralized-identifiers, universal-registrar, wg-id
- Language: JavaScript
- Homepage: https://uniregistrar.io/
- Size: 2.72 MB
- Stars: 8
- Watchers: 13
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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