From 50ebec60b078d03fc79058bfc334ec0d0ec4b2f3 Mon Sep 17 00:00:00 2001 From: Andrei Jiroh Halili Date: Sun, 14 Sep 2025 22:43:57 +0800 Subject: [PATCH] feat: add test `.env.keys` file for CI testing and contributions The encrypted secrets on both `.env` and `.env.ci` are fake and pose no risks. Signed-off-by: Andrei Jiroh Halili --- .env.keys | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .env.keys diff --git a/.env.keys b/.env.keys new file mode 100644 index 0000000..2be4fae --- /dev/null +++ b/.env.keys @@ -0,0 +1,15 @@ +#/------------------!DOTENV_PRIVATE_KEYS!-----------------------/ +#/ private decryption keys for manual tests and CI use only / +#/ DO NOT USE THESE IN PRODUCTION! For real secrets used in / +#/ CI operations et al, see the following repositories below: / +#/ - https://github.com/andreijiroh-dev/dotenvx-secretstore / +#/ - https://gitlab.com/recaptime-dev/infra/dotenvx-secretstore / +#/ / +#/ [how it works](https://dotenvx.com/encryption) / +#/--------------------------------------------------------------/ + +# .env +DOTENV_PRIVATE_KEY="f714dc92d7de5055cfe9b02e23d31782711427a0661c7bb1efa9339158ef7387" + +# .env.ci +DOTENV_PRIVATE_KEY_CI="eac9d021c7057b41b534cbe34a0418e869ba0bcb6c6389d194ae263c595cd5b1" -- 2.51.2