From 958c96193eed3281b602a3f1be7e1157a0829586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 11 Oct 2024 09:05:46 +0200 Subject: [PATCH] Add .gitignore and example local.env.dist Introduce a .gitignore to exclude local environment files. Provide a sample local.env.dist for configuration templates. This helps in maintaining environment-specific settings securely and consistently. --- .gitignore | 1 + local.env.dist | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 local.env.dist diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..104922e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +local.env \ No newline at end of file diff --git a/local.env.dist b/local.env.dist new file mode 100644 index 0000000..ce1c609 --- /dev/null +++ b/local.env.dist @@ -0,0 +1,7 @@ +AMQP_URL=amqp://guest:guest@localhost:32772/%2f/to_python_sign +LOG_LEVEL=DEBUG +PKCS12_PATH=./assets/dummy.p12 +TIMESTAMP_URL=http://freetsa.org/tsr +QUEUE_IN=to_python_sign +EXCHANGE_OUT=signed_docs +OUT_ROUTING_KEY=signed_doc