Frontend for SSI Playground to learn and understand SSI
Node 14+
If do not want to setup manul, then skip to the docker section.
git clone https://github.com/hypersign-protocol/studio #Pull the repo
cd studio/client
npm i
npm run build
npm run serve
Make sure you have .env
file.
npm run dev
Make sure you have .env.staging
file.
docker build -t hypersignprotocol/studio-client:v1.0 .
docker pull hypersignprotocol/studio-client:v1.0
docker run -it -p 9001:80 hypersignprotocol/studio-client:v1.0
VUE_APP_TITLE
: Title of applicationVUE_APP_VERSION
: Version of applicationVUE_APP_STUDIO_SERVER_BASE_URL
: Base url of studio serverVUE_APP_NODE_SERVER_BASE_URL
: Base url of HS blockchain nodeVUE_APP_EXPLORER_BASE_URL
: Url of explorer
docker run -it \
--env NODE_ENV="production" \
--env VUE_APP_TITLE="Studio" \
--env VUE_APP_VERSION="v1.0" \
--env VUE_APP_STUDIO_SERVER_BASE_URL=http://studio:9000/ \
--env VUE_APP_NODE_SERVER_BASE_URL=http://node:5000/ \
--env VUE_APP_EXPLORER_BASE_URL=http://explorer:5001/ \
-p 9001:80 hypersignprotocol/studio-client:v1.0
Note: 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:9001/
. - Ref