Skip to content

Commit

Permalink
Merge branch 'master' of ssh://bitbucket.org/aldor007/go-img
Browse files Browse the repository at this point in the history
  • Loading branch information
aldor007 committed Oct 26, 2017
2 parents 79b1b0b + 9add6cb commit 5809d81
Show file tree
Hide file tree
Showing 10 changed files with 540 additions and 202 deletions.
170 changes: 19 additions & 151 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 101 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,105 @@
# Mort [![Build Status](https://travis-ci.org/aldor007/mort.png)](https://travis-ci.org/aldor007/mort) [![Docker](https://img.shields.io/badge/docker-aldor007/mort-blue.svg)](https://hub.docker.com/r/aldor007/mort/) [![Docker Registry](https://img.shields.io/docker/pulls/aldor007/mort.svg)](https://hub.docker.com/r/aldor007/mort/) [![Go Report Card](http://goreportcard.com/badge/aldor007/mort)](http://goreportcard.com/report/aldor007/mort) ![ImageLayers](https://badge.imagelayers.io/aldor007/mort.svg)
# Mort [![Build Status](https://travis-ci.org/aldor007/mort.png)](https://travis-ci.org/aldor007/mort) [![Docker](https://img.shields.io/badge/docker-aldor007/mort-blue.svg)](https://hub.docker.com/r/aldor007/mort/) [![Docker Registry](https://img.shields.io/docker/pulls/aldor007/mort.svg)](https://hub.docker.com/r/aldor007/mort/) [![Go Report Card](http://goreportcard.com/badge/aldor007/mort)](http://goreportcard.com/report/aldor007/mort)

TODO
LOGO

S3 compatible image processing server written in Go.

# Usage

# Configuration


## Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

### Prerequisites

What things you need to install the software and how to install them

```
Give examples
```

### Installing

A step by step series of examples that tell you have to get a development env running

Say what the step will be

```
Give the example
```

And repeat

```
until finished
```

End with an example of getting some data out of the system or using it for a little demo

## Running the tests

Explain how to run the automated tests for this system

### Break down into end to end tests

Explain what these tests test and why

```
Give an example
```

### And coding style tests

Explain what these tests test and why

```
Give an example
```

## Deployment

```bash
git clone https://github.com/aldor007/mort.git && cd mort
```
Install dependencies:
```bash
dep ensure
```
Run tests:
```bash
go test ./...
```
Run integration tests:
```bash
./run-int.sh
```

## Built With

* [echo](https://github.com/labstack/echo) - The web framework used
* [dep](https://github.com/golang/dep) - Dependency Management
* [bimg](https://github.com/h2non/bimg) - Image processing powered by libvips C library

## Contributing

Please read [CONTRIBUTING.md](https://github.com/aldor007/mort/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.

## Versioning

We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/aldor007/mort/tags).

## Authors

* **Marcin Kaciuba** - *Initial work* - [Aldor007](https://github.com/aldor007)

## License

This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details

## Inspirations

* [picfit](https://github.com/thoas/picfit)
* [imaginary](https://github.com/h2non/imaginary)

1 change: 0 additions & 1 deletion cmd/mort.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ func main() {
e := echo.New()

e.Use(mort.S3AuthMiddleware(imgConfig))
e.Use(mort.S3Middleware(imgConfig))

// Route => handler
e.Any ("/*", func(ctx echo.Context) error {
Expand Down
Loading

0 comments on commit 5809d81

Please sign in to comment.