From b1c9ea156e715797b1b4042ec5b9f69a759c494d Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Thu, 16 Oct 2025 03:02:48 +0300 Subject: [PATCH 1/2] Add SECURITY_KEY generation hint and info about url --- .../gml-launcher/backend/installation/intall-source.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/gml-launcher/backend/installation/intall-source.mdx b/i18n/ru/docusaurus-plugin-content-docs/current/gml-launcher/backend/installation/intall-source.mdx index 40994f3..09c2f6b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/gml-launcher/backend/installation/intall-source.mdx +++ b/i18n/ru/docusaurus-plugin-content-docs/current/gml-launcher/backend/installation/intall-source.mdx @@ -29,6 +29,10 @@ cd Gml.Backend :::info Обязательно замените SECURITY_KEY! +Для его генерации можно воспользоваться следующей командой: +```bash +openssl rand -hex 32 +``` ::: @@ -91,4 +95,4 @@ docker compose up -d Пожалуйста, убедитесь, что Docker установлен и работает на вашем компьютере/сервере для выполнения этой команды. После выполнения команды Docker загрузит необходимые образы и запустит проект. -После запуска проекта, вы сможете открыть его в браузере, используя адрес предоставленный по окончанию установки: \ No newline at end of file +После запуска проекта, вы сможете открыть его в браузере, используя адрес `http://:5003`. \ No newline at end of file From 690585caf8dfe049b1de9ae804444b9ce38b2410 Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Thu, 16 Oct 2025 03:42:22 +0300 Subject: [PATCH 2/2] Change compose file to prod --- .../current/gml-launcher/backend/installation/intall-source.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/gml-launcher/backend/installation/intall-source.mdx b/i18n/ru/docusaurus-plugin-content-docs/current/gml-launcher/backend/installation/intall-source.mdx index 09c2f6b..f6fc8a7 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/gml-launcher/backend/installation/intall-source.mdx +++ b/i18n/ru/docusaurus-plugin-content-docs/current/gml-launcher/backend/installation/intall-source.mdx @@ -89,7 +89,7 @@ MARKET_ENDPOINT=https://gml-market.recloud.tech Выполните следующую команду в вашем терминале: ```bash -docker compose up -d +docker compose up -f ./docker-compose-prod.yml -d ``` Пожалуйста, убедитесь, что Docker установлен и работает на вашем компьютере/сервере для выполнения этой команды.