From dd832a80117a7fd1412600cae97553d7cd064358 Mon Sep 17 00:00:00 2001 From: jango-blockchained Date: Mon, 16 Dec 2024 15:05:00 +0100 Subject: [PATCH] Add .env.example file for environment variable configuration - Created a new .env.example file to provide a template for required environment variables, including NODE_ENV, HASS_HOST, and HASS_TOKEN. - This addition enhances configuration management by guiding users on necessary settings for the application. --- .env.example | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..ededad8 --- /dev/null +++ b/.env.example @@ -0,0 +1,3 @@ +NODE_ENV=production +HASS_HOST=your_home_assistant_url +HASS_TOKEN=your_home_assistant_token \ No newline at end of file