Skip to content
This repository was archived by the owner on Sep 28, 2018. It is now read-only.

Latest commit

 

History

History
36 lines (22 loc) · 1.03 KB

File metadata and controls

36 lines (22 loc) · 1.03 KB

framework Build Status codecov.io

framework provides abstractions to services used across multiple projects.

Services

  • configurable standarizes the way to create configuration containers.
  • database package provides access to SQL databases.
  • queue provides access to message brokers.

Development

Run tests with:

go test -v ./...

Tests require the following services running:

  • PostgreSQL
docker run --name test-postgres -e POSTGRES_PASSWORD=testing -p 5432:5432 -e POSTGRES_USER=testing
  • RabbitMQ
docker run --hostname rabbit --name rabbit -p 8080:15672 -p 5672:5672 rabbitmq:3-management

They also need the etcd binary present in PATH.

License

Licensed under the terms of the Apache License Version 2.0. See the LICENSE file for the full license text.