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