From 7cb5dc9b723890bdfabd00744335189b7e25cb4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=CC=81scar=20M=2E=20Lage?= Date: Thu, 28 Nov 2024 23:05:07 +0100 Subject: [PATCH] Cosmetics --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 07f4a50..13a07fb 100644 --- a/README.md +++ b/README.md @@ -8,19 +8,23 @@ Este proyecto gestiona eventos relacionados con el encendido y apagado de sistem ## ConfiguraciĆ³n -1. Crear archivo .env - Copia el archivo .env.sample a .env y configura las variables de entorno necesarias: +1. CCopia el archivo `env.sample` a `.env` y configura las variables de entorno necesarias: ```sh -$ cp .env.sample .env +$ cp env.sample .env ``` -Luego edita el archivo .env con los valores correspondientes: +Luego edita el archivo `.env` con los valores correspondientes: ```ini +# Docker +DOCKER_ENV=production +PROJECT_NAME=heating-monitor + # Telegram Bot Configuration TELEGRAM_TOKEN=xxx:yyy TELEGRAM_CHATID=123123123 + # Web Server Configuration WEB_PORT=9900 ```