Go to file
R. Tyler Croy 86ea344525
Switch Events to a lower-case table name since postgresql is weird with casing
2018-09-10 09:36:39 -07:00
config Incorporate docker-compose for testing the full stack locally 2018-09-09 21:41:48 -07:00
migrations Switch Events to a lower-case table name since postgresql is weird with casing 2018-09-10 09:36:39 -07:00
public Incorporate docker-compose for testing the full stack locally 2018-09-09 21:41:48 -07:00
seeders Configure sequelize and generate the first (and likely only) model: Event 2018-09-09 21:34:44 -07:00
src Switch Events to a lower-case table name since postgresql is weird with casing 2018-09-10 09:36:39 -07:00
test Enable test reporting from jest 2018-09-09 18:20:49 -07:00
tools Incorporate docker-compose for testing the full stack locally 2018-09-09 21:41:48 -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 Switch Events to a lower-case table name since postgresql is weird with casing 2018-09-10 09:36:39 -07:00
README.adoc Refactor the /receive route into /events 2018-09-10 08:17:20 -07:00
activate Initial commit of a skeleton typescript project 2018-09-09 17:27:58 -07:00
docker-compose.yml Switch Events to a lower-case table name since postgresql is weird with casing 2018-09-10 09:36:39 -07:00
package-lock.json Configure sequelize and generate the first (and likely only) model: Event 2018-09-09 21:34:44 -07:00
package.json Configure sequelize and generate the first (and likely only) model: Event 2018-09-09 21:34:44 -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", "payload" : {"hi" : "there"}}' \
    -H "Content-Type: application/json" \
    http://localhost:3030/events

Database Debugging

./tools/docker-compose run --rm db psql -h db -U postgres uplink_development
</html>