From 62b73e2a79306c5c302fdf9ab1d3949266b5221c Mon Sep 17 00:00:00 2001 From: azures04 Date: Mon, 19 Jan 2026 02:12:16 +0100 Subject: [PATCH] Update env variable names for credentials Renamed USERNAME and PASSWORD to CRED_USERNAME and CRED_PASSWORD in .env.example and updated their usage in test.js to improve clarity and avoid potential conflicts. --- .env.example | 4 ++-- test.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index a9f5862..cf8027e 100644 --- a/.env.example +++ b/.env.example @@ -1,3 +1,3 @@ # Credentials -USERNAME="username" -PASSWORD="password" \ No newline at end of file +CRED_USERNAME="username" +CRED_PASSWORD="password" \ No newline at end of file diff --git a/test.js b/test.js index 60bd11d..cd6461a 100644 --- a/test.js +++ b/test.js @@ -3,7 +3,7 @@ const { Bifrost } = require("./src/lib") const bifrost = new Bifrost() async function main() { - const client = await bifrost.login(process.env.USERNAME, process.env.PASSWORD) + const client = await bifrost.login(process.env.CRED_USERNAME, process.env.CRED_PASSWORD) } main() \ No newline at end of file