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 this to sign postman http requests to the KuCoin API | |
// dont forget to set KC-API-KEY as well as KC-API-PASSPHRASE as headers and to replace the secret used below. | |
const timestamp = Date.now(); | |
const body = request.body ? request.body : ''; | |
const method = request.method; | |
const [, endpoint] = request.url.split('https://api.kucoin.com'); |
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
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: postgres | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: postgres |