Skip to content

Local setup using Docker

Studio UI

Clone the CREDEBL Studio repository:

Terminal window
git clone https://github.com/credebl/studio.git
cd studio

Create a .env file and set the required environment variables as per the .env.sample file.

Build docker image

Terminal window
docker build -t UI .

Start Studio UI

Terminal window
docker run -d -p 8085:8085 --env-file .env --name UI-App UI

Access the dockerized Studio UI by navigating to:

Terminal window
http://localhost:8085