Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/engineerit2014/kit-go
Set of common packages used by all or most projects in my repositories: Postgresql DB, Postgresql Migrations, Error Handling Middleware and Redis DB.
https://github.com/engineerit2014/kit-go
docker-compose dockerfile golang golang-library makerfile postgresql redis
Last synced: 28 days ago
JSON representation
Set of common packages used by all or most projects in my repositories: Postgresql DB, Postgresql Migrations, Error Handling Middleware and Redis DB.
- Host: GitHub
- URL: https://github.com/engineerit2014/kit-go
- Owner: engineerit2014
- Created: 2021-03-22T16:22:05.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-15T12:12:23.000Z (over 3 years ago)
- Last Synced: 2024-11-15T00:20:01.342Z (about 1 month ago)
- Topics: docker-compose, dockerfile, golang, golang-library, makerfile, postgresql, redis
- Language: Go
- Homepage: https://github.com/laironacosta/kit-go
- Size: 35.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kit
Set of common packages used by all or most projects in my repositories.## Table of Contents
- [Implementation examples](#implementation-examples)
- [Postgresql](#postgresql)
- [Redis](#redis)
- [Testing](#testing)## Implementation examples
### Postgresql
See the examples already implemented in the folder `/postgresql`.
### Redis
See the examples already implemented in the folder `/redis`.
## Testing
To run the tests simply execute the following command:
```shell
make test
```This will stop any containers defined by the compose file for tests if already running
and then rebuild the containers using the compose file.To down the containers simply execute the following command:
```shell
make test-down
```[email protected]
-- Lairon