Skip to content

Instantly share code, notes, and snippets.

View s0undt3ch's full-sized avatar

Pedro Algarvio s0undt3ch

View GitHub Profile
codecov:
token: uuid # Your private repository token
url: "http" # for Codecov Enterprise customers
slug: "owner/repo" # for Codecov Enterprise customers
branch: master # override the default branch
bot: username # set user whom will be the consumer of oauth requests
ci: # Custom CI domains if Codecov does not identify them automatically
- ci.domain.com
- !provider # ignore these providers when checking if CI passed
# ex. You may test on Travis, Circle, and AppVeyor, but only need
@s0undt3ch
s0undt3ch / echo.js
Last active September 20, 2017 13:28 — forked from whiteinge/echo.js
Verbose node.js websocket logging server
/**
* npm install express
* npm install console-stamp
*
* To run:
* node echo.js
*/
const express = require('express');
const http = require('http');