If do not want to setup manul, then skip to the docker section.
git clone https://github.com/hypersign-protocol/explorer #Pull the repo
cd explorer
npm inpm run build
npm run serveMake sure you have .env file.
npm run devMake sure you have .env.staging file.
docker build -t hypersignprotocol/explorer:v1.0 .docker pull hypersignprotocol/explorer:v1.0docker run -it -p 5001:80 hypersignprotocol/explorer:testVUE_APP_TITLE: Title of applicationVUE_APP_VERSION: Version of applicationVUE_APP_STUDIO_BASE_URL: Base url of studio appVUE_APP_NODE_SERVER_BASE_URL: Base url of HS blockchain nodeVUE_APP_RECAPTCHA_SITE_KEY: Recaptcha site key
docker run -it \
--env VUE_APP_TITLE="Identity Explorer" \
--env VUE_APP_VERSION=v1.0 \
--env VUE_APP_STUDIO_BASE_URL=http://localhost:9001/ \
--env VUE_APP_NODE_SERVER_BASE_URL=http://localhost:5000/ \
--env VUE_APP_RECAPTCHA_SITE_KEY="re captcha site key" \
-p 5001:80 hypersignprotocol/explorer:v1.0Note: If you do not pass --env options then all envs are taken from .env file.
--
- On success full run, the app will run on
http://localhost:5001/. - Ref