Platform
Installation guide for CREDEBL Platform Services
Before installing the CREDEBL Platform services, it is essential to ensure that your environment meets certain prerequisites. Properly setting up these requirements will help facilitate a smooth installation process and optimal performance of the platform. This includes preparing your system with the necessary software dependencies, configuring the required network settings, and ensuring adequate hardware resources. Following these guidelines will help prevent potential issues and ensure that the CREDEBL Platform services are installed and operate as intended.
System requirements
Here is the list of software needed to get started:
Git (>= 2.34.1)
Docker (>= 24.0.5)
Docker Compose (>= 2.20.3)
The above can directly be installed from their respective docs or from common prerequisites
Prerequisites
Here is the list of prerequisites software we will need for CREDEBL:
PostgreSQL (>= 14)
NATS (>= 2.6.4)
REDIS (>= 7.4)
Keycloak (>= 25.0.6)
Schema file server (optional)
Clone Repository
Clone the platform repository from GitHub:
Postgresql
PostgreSQL is a powerful, open-source object-relational database system known for its robustness and advanced features. This guide provides instructions for installing and configuring PostgreSQL both natively and using Docker. Installing PostgreSQL
Initially we'll need to install postures on the host or on docker
Access the PostgreSQL and create user and database
Now, add the postgres environment variable to the .env
file
NATS
The CREDEBL platform utilizes NATS for message-driven data exchange between its microservices.
Create the NATS Configuration File (nats-server.conf) The configuration file defines how the NATS server operates, including port assignments and WebSocket support.
port: The main port for NATS communication is set to 4222.
max_payload: Sets the maximum message payload size to 4 MB.
websocket: Enables WebSocket support on port 443 without TLS (for unsecured communication).
You can skip further NATS and REDIS setup if you are installing services using docker and Continue here
Create the docker-compose.yml File
The docker-compose.yml file will define the NATS service, map the necessary ports, and bind the configuration file.
To create your Nkeys, you can refer NATS tool nk as per their official documentation
container_name: Sets the name of the container to nats.
image: Uses the official NATS Docker image.
command: Passes the NATS configuration file to the container at startup.
ports: Exposes three key ports:
4222
: Main NATS client communication port.6222
: Routing port for NATS clusters.8222
: HTTP monitoring port for server statistics and health checks.
volumes: Mounts the nats-server.conf configuration file into the container as read-only (ro).
Start the NATS Server
To start the NATS server, run the following command from the directory containing the docker-compose.yml file:
REDIS
You can skip REDIS setup if you are installing Platform services using docker. Continue here
The CREDEBL platform leverages Redis as an in-memory data store, primarily for caching and queuing.
To set up Redis for the CREDEBL platform, follow the steps below to create and launch a Redis instance using Docker.
Create the docker-compose.yml File The docker-compose.yml file is used to define and configure the Redis container for the platform.
Start REDIS Server Once the
docker-compose.yml
file is in place, start the Redis service by running the following command:
Keycloak
Keycloak is an open source identity and access management solution
Run Keycloak using docker:
This command installs and starts Keycloak at the specified endpoints, locally accessible at http://localhost:8080.
Once logged in:
This section guides you through the initial setup and configuration of Keycloak through its administration console.
Go to administration console
Login using username: admin, password: admin.
Click on the Keycloak dropdown on the top left and add a new realm as “credebl-platform” by clicking on 'Create realm'.
Go to 'Clients' under 'Manage' in the sidebar on the left and create new client as a clientId = “adminClient”.
Click on Next Button
Set client authentication to ON mode.
Set Service Accounts Roles to ON mode.
Set Direct Access Grants to ON mode.
Click on Next Button
Add http://your-url/* (Eg.: http://localhost:3000/*) in Valid Redirect URIs as front-end url.
Add http://your-url/ (Eg.: http://localhost:8080/) in Root URL.
Add http://your-url/ (Eg.: http://localhost:8080/) in Web Origins.
Save the details
Service Account Roles Settings:
This section outlines the configuration of service account roles to manage permissions and access control within Keycloak.
Go to adminClient by selecting from the clients side tab.
Go to the Service account role section.
Click on the Assign role button.
Select Filter by clients from the dropdown menu.
Select the below roles from the Available Roles and click on the Assign button:
Create-client
Manage-client
Manage-users
Query-clients
Query-users
View-clients
View-users
Realm Roles Settings:
This section covers the configuration of realm role settings within Keycloak.
Under the credebl-platform realm, from the menu select realm-roles.
In realm-roles, click on Create Role and create a role with Role name=“holder”, as when a new user registers on the platform we are assigning him a “holder” role from the realm.
SSO Session Settings:
Set SSO Session Idle to 2 days. This is the expiration time of the refresh token if the user is idle on the platform. We can configure this as per our need. To navigate to SSO Session, go to
Realm settings
option on left sidebar underconfigure,
now under theSessions
tab you can seeSSO Session Idle
Update the
.env
This section covers the setup of environment variables for seamless integration with your application
Update the .env file for the Keycloak details:
To set the env variable KEYCLOAK_MANAGEMENT_CLIENT_SECRET, in credebl-platform realm, go to clients >> adminClient. Now in the Credentials tab, copy the client secret
Below is an optional step to add users and can be skipped
Add users manually (Optional):
This section provides guidance on adding users manually to the Keycloak realm.
Go to users.
Add username: your.email@your.domain and email: your.email@your.domain.
Enable user and email, then click on save.
Change the password in the credential section for user login.
Update the Keycloak userId in the users table in the local database.
Also update the client secret key in the .env file, which you will get in the credential section of adminClient in the client section.
Test the flow by logging in to platform admin.
SendGrid
Create a SendGrid account, generate an API key, and grant necessary permissions for sending emails.
Make a note of the API-key as well as the email used, as this will be later used in our .env
and during Installation
Add the send grid key in the
.env
AWS S3
To utilize all functionalities of CREDEBL, total of 3 S3 buckets are required for;
Storing Organization logo during creating and updating an organization
Bulk issuance of credentials
Storing connection URL generated from Agent and creating shortened URL
From the above mentioned, 1 and 2 can be skipped, if the respective functionality of adding organization logo and Bulk issuance is unused
According to the AWS_S3_STOREOBJECT_BUCKET
name, as per the AWS S3 path style, add domain to access objects from the bucket and save it, as it is utilized for the another .env variable
Note: Usually, SHORTENED_URL_DOMAIN
for bucket names with dot ( . ) in it comes after '/': https://AWS_S3_STOREOBJECT_REGION.amazonaws.com/
bucket-name
. And others are often referred as a subdomain: https://
bucket-name
.AWS_S3_STOREOBJECT_REGION.amazonaws.com
Schema File Server (Optional)
This is an optional setup required for using w3c credentials, you can skip this if you want to use AnonCreds credentials
Coming Soon
Agent Setup
The Docker image built during this process is used to launch agents for new organizations on the CREDEBL platform.The Docker image name is set as an environment variable during the platform setup in a later step.
Clone the following repository:
Use following commands to install and upgrade Yarn:
To install the dependencies use following command:
Build Agent controller using the following command:
Create Docker Image using following command :
Mention credo controller version or any tag name. Note the same version will also need to be added in the .env
Add the Docker Image tag in the
.env
Environment Variables
To help you quick start, a .env.demo
is already present at the root of the platform repository. To getting started, rename .env.demo
to .env
Please find your-ip
in the .env
file, and replace it with your machine's Ip address.
If you want to know more about the environment variables, please refer to .env.sample
file which is given at root of the repository.
Apart from the already present variables, you need to add few variables generated from the above prerequisites like the postgresql, keycloak, sendgrid, AWS S3, Credo version, etc
Installations
Make sure the .env
file is set with all the required environment variables as per the .env.sample file and the env guide give above.
Before you start the services make sure to update the credebl-master-table.json
present at location, libs/prisma-service/prisma/data
At the root of the platfrom repo:
Now seed the db, before starting the services using the following:
Since, you are in the '/prisma-service', move back to the root
Start the services:
Access the Platform API by navigating to http://localhost:5000
Last updated