$ npm install pg pg-hstore
Estos dos artículos te pueden ayudar a entender sobre Docker
- Conceptos básicos
- Instalación
This file contains 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
'use strict'; | |
const request = require('request'); | |
const options = require('../config/env.config.js'); | |
class CryptoPay { | |
constructor() { | |
this.apiUrl = 'https://cryptopay.me/api/v2'; | |
this.apiKey = options.cryptopay.apiKey; |