From 2b63d62242fe0ce8eb4a6d60b4a294ecf1de030f Mon Sep 17 00:00:00 2001 From: Thaddee Tyl Date: Sun, 20 Nov 2016 18:53:51 +0100 Subject: [PATCH] Re-remove the ass testing dependency It was mistakenly added by 2cb82a4a. --- INSTALL.md | 20 +++++++++++++++++++- package.json | 5 ----- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index db16a32..f2a2cbe 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -147,9 +147,27 @@ http://[::1]:80/try.html Assuming Docker is running locally, you should be able to get to the application at http://localhost:8080/try.html. If you run Docker in a virtual machine (such as boot2docker or Docker Machine) then you will need to replace `localhost` with the actual IP address of that virtual machine. +# Secret.json + +Some services require the use of secret tokens or passwords. Those are stored in a file called `secret.json` that is not checked into the repository, to avoid impersonation. Here is how it currently looks like: + +``` +bintray_apikey +bintray_user +gh_client_id +gh_client_secret +gitter_dev_secret +shieldsIps +shieldsSecret +sl_insight_apiToken +sl_insight_userUuid +``` + +(Gathered from `cat secret.json | jq keys | grep -o '".*"' | sed 's/"//g'`.) + # Main Server Sysadmin -- DNS round-robin between https://vps197850.ovh.net/try.html and https://vps244529.ovh.net/try.html. +- DNS round-robin between https://vps244529.ovh.net/try.html and https://vps71670.vps.ovh.ca/try.html. - Self-signed TLS certificates, but `img.shields.io` is behind CloudFlare, which provides signed certificates. - Using node v0.12.7 because later versions, combined with node-canvas, give inaccurate badge measurements. - Using forever (the node monitor) to automatically restart the server when it crashes. diff --git a/package.json b/package.json index 5372356..2abda07 100644 --- a/package.json +++ b/package.json @@ -29,11 +29,6 @@ "json-autosave": "~1.1.1", "xml2js": "~0.4.16" }, - "devDependencies": { - "ass": "~0.0.6", - "should": "~3.0.0", - "mocha": "~1.14.0" - }, "scripts": { "test": "node test/test.js" },