Go to file
R. Tyler Croy 21ead317d8
Use the hostname for the production environment
It appears that without this the github auth token requests cannot be served
properly.
2018-09-20 13:35:39 -07:00
config Use the hostname for the production environment 2018-09-20 13:35:39 -07:00
migrations Incorporate some basic access control based off of GitHub username 2018-09-12 08:42:06 -07:00
public Add some screenshots 2018-09-11 16:48:58 -07:00
seeders Incorporate some basic access control based off of GitHub username 2018-09-12 08:42:06 -07:00
src Pull in GitHub settings for production properly 2018-09-20 13:31:01 -07:00
test Add support for exporting all of the events based on a type 2018-09-11 16:02:02 -07:00
tools Give our node containers names to make them easier to spot 2018-09-11 14:40:39 -07:00
views Incorporate some basic access control based off of GitHub username 2018-09-12 08:42:06 -07:00
.editorconfig Generated feathers app from the cli 2018-09-09 18:13:54 -07:00
.gitignore Enable test reporting from jest 2018-09-09 18:20:49 -07:00
.sequelizerc Switch Events to a lower-case table name since postgresql is weird with casing 2018-09-10 09:36:39 -07:00
Dockerfile Add the uplink docker container for @daniel-beck 2018-09-19 14:32:19 -07:00
Jenkinsfile Sleep a bit differently 2018-09-19 17:30:00 -07:00
LICENSE.txt Add the license text 2018-09-09 17:38:26 -07:00
Makefile Superfluous semi-colon 2018-09-19 17:53:59 -07:00
README.adoc Add a very informative screenshot 2018-09-11 16:50:20 -07:00
activate
docker-compose.yml Fix the tests so they run again 2018-09-11 14:40:39 -07:00
package-lock.json Begin adding a simple /dashboard view for the entries 2018-09-10 20:41:08 -07:00
package.json Add the uplink docker container for @daniel-beck 2018-09-19 14:32:19 -07:00
tsconfig.json Add the necessary feathersjs dependencies 2018-09-09 17:38:26 -07:00

README.adoc

<html lang="en"> <head> </head>

Uplink

uplink is a simple web application to receive short bursts of anonymous telemetry data from Jenkins instances.

logged in
Figure 1. Logged in to Uplink

Development

  • Running tests: make check

  • Running the server: make run

Uploading a test event

curl -d '{"type":"stapler", "correlator" : "my-correlator-id", "payload" : {"hi" : "there"}}' \
    -H "Content-Type: application/json" \
    http://localhost:3030/events

Database Debugging

make debug-db
</html>