Created
November 19, 2021 01:58
-
-
Save loloDawit/422e5fdb5f60de9ba12e801c28aae8b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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