diff --git a/documentation/3.2.0/native/MentorEd-Setup-README.md b/documentation/3.2.0/native/MentorEd-Setup-README.md index 0ae4a7c3f..bcd7d05ed 100644 --- a/documentation/3.2.0/native/MentorEd-Setup-README.md +++ b/documentation/3.2.0/native/MentorEd-Setup-README.md @@ -454,12 +454,12 @@ Set the following environment variables to connect MentorED's Chat Communication - **Ubuntu/Linux** ``` - cd mentoring/src && pm2 start app.js -i 2 --name mentored-mentoring && cd ../.. && \ - cd user/src && pm2 start app.js -i 2 --name mentored-user && cd ../.. && \ - cd notification/src && pm2 start app.js -i 2 --name mentored-notification && cd ../.. && \ - cd interface-service/src && pm2 start app.js -i 2 --name mentored-interface && cd ../.. && \ - cd scheduler/src && pm2 start app.js -i 2 --name mentored-scheduler && cd ../.. && \ - cd chat-communications/src && pm2 start app.js -i 2 --name mentored-communications && cd ../.. + cd mentoring/src && pm2 start app.js -i 1 --name mentored-mentoring && cd ../.. && \ + cd user/src && pm2 start app.js -i 1 --name mentored-user && cd ../.. && \ + cd notification/src && pm2 start app.js -i 1 --name mentored-notification && cd ../.. && \ + cd interface-service/src && pm2 start app.js -i 1 --name mentored-interface && cd ../.. && \ + cd scheduler/src && pm2 start app.js -i 1 --name mentored-scheduler && cd ../.. && \ + cd chat-communications/src && pm2 start app.js -i 1 --name mentored-communications && cd ../.. ``` - **MacOS** diff --git a/documentation/3.2.0/native/envs/mentoring_env b/documentation/3.2.0/native/envs/mentoring_env index a64e0bac2..d1cc754ea 100644 --- a/documentation/3.2.0/native/envs/mentoring_env +++ b/documentation/3.2.0/native/envs/mentoring_env @@ -89,4 +89,5 @@ COMMUNICATION_SERVICE_HOST="http://localhost:3123" ENABLE_CHAT=true PORTAL_BASE_URL="https://dev.elevate-mentoring.shikshalokam.org" EVENTS_TOPIC="userCreate" # Ensure this matches the User Service configuration - +FROM_EMAIL=example@gmail.com +EMAIL_SERVICE=smpt diff --git a/documentation/3.2.0/native/envs/notification_env b/documentation/3.2.0/native/envs/notification_env index 58ea8fbb3..4628564c4 100644 --- a/documentation/3.2.0/native/envs/notification_env +++ b/documentation/3.2.0/native/envs/notification_env @@ -12,3 +12,5 @@ KAFKA_HOST=localhost:9092 KAFKA_TOPIC=develop.notifications SENDGRID_API_KEY=asd9f87a SENDGRID_FROM_MAIL=no-reply@some.org +FROM_EMAIL=example@gmail.com +EMAIL_SERVICE=smpt \ No newline at end of file diff --git a/documentation/3.2.0/native/envs/user_env b/documentation/3.2.0/native/envs/user_env index 86704b387..34f74e368 100644 --- a/documentation/3.2.0/native/envs/user_env +++ b/documentation/3.2.0/native/envs/user_env @@ -83,3 +83,4 @@ SCHEDULER_SERVICE_HOST=http://localhost:3569 SCHEDULER_SERVICE_URL=http://localhost:3569/jobs/scheduleJob SIGNED_URL_EXPIRY_DURATION=120000 SIGNED_URL_EXPIRY_IN_SECONDS=900 +ENTITY_MANAGEMENT_SERVICE_BASE_URL=http://localhost:3569 diff --git a/documentation/3.2.0/native/scripts/linux/create-databases.sh b/documentation/3.2.0/native/scripts/linux/create-databases.sh index e52ec4979..3b6e09fdc 100755 --- a/documentation/3.2.0/native/scripts/linux/create-databases.sh +++ b/documentation/3.2.0/native/scripts/linux/create-databases.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -euo pipefail # Run commands as the postgres user sudo -u postgres psql -p 9700 -c "CREATE USER postgres WITH ENCRYPTED PASSWORD 'postgres';"