From cb81c443c1d7c886e9291de1492cf2ce688c086c Mon Sep 17 00:00:00 2001 From: Pier-Paolo Mammi Date: Fri, 15 May 2026 15:28:39 +0200 Subject: [PATCH] add env file to set user credentials and module tag for export --- .env.template | 6 ++++++ .gitignore | 1 + 2 files changed, 7 insertions(+) create mode 100644 .env.template create mode 100644 .gitignore diff --git a/.env.template b/.env.template new file mode 100644 index 0000000..f811d06 --- /dev/null +++ b/.env.template @@ -0,0 +1,6 @@ +# This is a template for environment variables. Copy this file to .env and fill in the values. +# IMPORTANT #1: Do not commit the .env file to version control, as it may contain sensitive information! +# IMPORTANT #2: Surround values with quotes if they contain spaces or special characters! +ELIXFORMS_USERNAME= +ELIXFORMS_PASSWORD= +ELIXFORMS_MODULE_TAG= \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env