Skip to content

Commit 1715b29

Browse files
authored
Merge branch 'develop' into refactor/env-process-into-config-file
Signed-off-by: rockito10 <[email protected]>
2 parents 4d2e92d + d1f0679 commit 1715b29

File tree

74 files changed

+5156
-3714
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+5156
-3714
lines changed

.env.demo

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ AFJ_AGENT_SPIN_UP=/agent-provisioning/AFJ/scripts/docker_start_agent.sh
121121
AFJ_AGENT_ENDPOINT_PATH=/agent-provisioning/AFJ/endpoints/
122122
# Uncomment bellow three lines and comment the above to start services locally without using docker, using pnpm
123123
# AFJ_AGENT_TOKEN_PATH=/apps/agent-provisioning/AFJ/token/
124-
# AFJ_AGENT_SPIN_UP=/apps/agent-provisioning/AFJ/scripts/docker_start_agent.sh
124+
# AFJ_AGENT_SPIN_UP=/apps/agent-provisioning/AFJ/scripts/start_agent.sh
125125
# AFJ_AGENT_ENDPOINT_PATH=/apps/agent-provisioning/AFJ/endpoints/
126126

127127
AGENT_PROTOCOL=http
@@ -131,13 +131,13 @@ MAX_ORG_LIMIT=10
131131
FIDO_API_ENDPOINT=http://localhost:8000
132132

133133
IS_ECOSYSTEM_ENABLE=false
134-
CONSOLE_LOG_FLAG=true // Enable or disable console ELK logs
135-
ELK_LOG=true // ELK flag
136-
LOG_LEVEL=debug // ELK log level
137-
ELK_LOG_PATH = "http://localhost:9200/" // ELK log path
138-
ELK_USERNAME=elastic // ELK user username
139-
ELK_PASSWORD=xxxxxx // ELK user password
134+
CONSOLE_LOG_FLAG=true # Enable or disable console ELK logs
135+
ELK_LOG=false # ELK flag
136+
LOG_LEVEL=debug # ELK log level
137+
ELK_LOG_PATH= "http://localhost:9200/" # ELK log path
138+
ELK_USERNAME=elastic # ELK user username
139+
ELK_PASSWORD=xxxxxx # ELK user password
140140

141141
ORGANIZATION=credebl
142142
CONTEXT=platform
143-
APP=api
143+
APP=api

apps/agent-provisioning/AFJ/scripts/start_agent.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ if [ $? -eq 0 ]; then
209209

210210
docker rm -f "${PROJECT_NAME}" || true
211211

212-
docker-compose -f $FILE_NAME --project-name "${PROJECT_NAME}" up -d
212+
docker compose -f $FILE_NAME --project-name "${PROJECT_NAME}" up -d
213213
if [ $? -eq 0 ]; then
214214

215215
n=0
@@ -271,4 +271,4 @@ else
271271
echo "ERROR : Failed to execute!" && exit 125
272272
fi
273273

274-
echo "Total time elapsed: $(date -ud "@$(($(date +%s) - $START_TIME))" +%T) (HH:MM:SS)"
274+
echo "Total time elapsed: $(date -ud "@$(($(date +%s) - $START_TIME))" +%T) (HH:MM:SS)"

0 commit comments

Comments
 (0)