Go to file
R. Tyler Croy 7b09eca4b7
Add some screenshots
2018-09-11 16:48:58 -07:00
config Add GitHub authentication in front of the /dashboard service 2018-09-10 17:26:41 -07:00
migrations Add a simple DB-backed users service 2018-09-11 16:31:11 -07:00
public Add some screenshots 2018-09-11 16:48:58 -07:00
seeders Configure sequelize and generate the first (and likely only) model: Event 2018-09-09 21:34:44 -07:00
src Add a simple DB-backed users service 2018-09-11 16:31:11 -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 Add support for exporting all of the events based on a type 2018-09-11 16:02:02 -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
LICENSE.txt Add the license text 2018-09-09 17:38:26 -07:00
Makefile Fix the tests so they run again 2018-09-11 14:40:39 -07:00
README.adoc Add some integration testing of the /events service just to sanity check myself 2018-09-10 10:02:36 -07:00
activate Initial commit of a skeleton typescript project 2018-09-09 17:27:58 -07:00
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 Begin adding a simple /dashboard view for the entries 2018-09-10 20:41:08 -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.

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>