Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.demo
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ [email protected]
AFJ_VERSION=ghcr.io/credebl/credo-controller:latest

PLATFORM_WALLET_NAME=platform-admin
PLATFORM_WALLET_PASSWORD='U2FsdGVkX19l6w/PpuicnGBYThBHolzF27oN0JwfWkc='
PLATFORM_WALLET_KEY='U2FsdGVkX19l6w/PpuicnGBYThBHolzF27oN0JwfWkc='
PLATFORM_SEED=000000000000000000000000Steward1
PLATFORM_ID=1

Expand Down
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ AFJ_VERSION=afj-0.4.1:latest
FIDO_API_ENDPOINT=http://localhost:8000 # Host:port of your FIDO (WebAuthn) Server

PLATFORM_WALLET_NAME=platform-admin
PLATFORM_WALLET_PASSWORD= // Please provide encrypt password using crypto-js
PLATFORM_WALLET_KEY= // Please provide encrypt key using crypto-js
PLATFORM_SEED= // The seed should consist of 32 characters.
PLATFORM_ID=

Expand Down
2 changes: 1 addition & 1 deletion apps/agent-service/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function bootstrap(): Promise<void> {

const agentSpinupPayload: IAgentSpinupDto = {
walletName: process.env.PLATFORM_WALLET_NAME,
walletPassword: process.env.PLATFORM_WALLET_PASSWORD,
walletPassword: process.env.PLATFORM_WALLET_KEY,
seed: process.env.PLATFORM_SEED,
orgName: `${CommonConstants.PLATFORM_ADMIN_ORG}`,
platformAdminEmail: process.env.PLATFORM_ADMIN_EMAIL,
Expand Down