Created
April 1, 2019 18:06
-
-
Save iqan/89af7f1e4a069e94971f5255eb997f98 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
| const appConfig = { | |
| port: process.env.PORT || 3000, | |
| hostUrl: process.env.HOST_URL || `http://your-local-machine-ip` | |
| }; | |
| var paytmConfig = { | |
| mid: process.env.PAYTM_MERCH_ID || '<YOUR_MERCHANT_ID_HERE>', | |
| key: process.env.PAYTM_MERCH_KEY || '<YOUR_MERCHANT_KEY_HERE>', | |
| website: process.env.PAYTM_MERCH_WEBSITE || 'WEBSTAGING', | |
| transactionUrl: process.env.PAYTM_TXN_URL || 'https://securegw-stage.paytm.in/theia/processTransaction', | |
| hostName: process.env.PAYTM_HOST || 'securegw-stage.paytm.in' | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment