Skip to content

Instantly share code, notes, and snippets.

@loloDawit
Created November 19, 2021 01:58
Show Gist options
  • Select an option

  • Save loloDawit/422e5fdb5f60de9ba12e801c28aae8b9 to your computer and use it in GitHub Desktop.

Select an option

Save loloDawit/422e5fdb5f60de9ba12e801c28aae8b9 to your computer and use it in GitHub Desktop.
/* eslint-disable no-undef */
"use strict";
require("dotenv").config();
module.exports = () => {
const Account = {
// make sure to properly set your acccount and account id
accountName: process.env.NODE_ENV === "dev" ? "DEV-ACCOUNT" : "PROD-ACCOUNT",
accountID: process.env.NODE_ENV === "dev" ? 11111111 : 1000000
};
return Account;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment