Setup Development Environment
Verifier Demo Setup
Clone didPass repository then checkout to
development
branch
git clone https://github.com/GDP-ADMIN/didPass.git
Copy verifier-demo's
.env.example
as.env
and Set Environment Variables in .env
Set Environment Variables
Run Redis
Fill
REDIS_HOST
,REDIS_PASSWORD
, andREDIS_PORT
value
REDIS_HOST="127.0.0.1"
REDIS_PASSWORD=""
REDIS_PORT="6379"
Or if you running the dev server on docker:
REDIS_HOST="redis"
REDIS_PASSWORD=""
REDIS_PORT="6379"
Run ngrok
ngrok http 3000
, copy forwarding url and fillNEXT_PUBLIC_URL
value.
NEXT_PUBLIC_URL="<placeholder(public server url)>"
References
Last updated