Skip to content
This repository has been archived by the owner on Nov 23, 2018. It is now read-only.

Prefixed keys #44

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
206 changes: 206 additions & 0 deletions Gopkg.lock

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

82 changes: 82 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
name = "github.com/BurntSushi/toml"
version = "0.3.0"

[[constraint]]
branch = "master"
name = "github.com/garyburd/redigo"

[[constraint]]
name = "github.com/goware/cors"
version = "1.0.0"

[[constraint]]
branch = "master"
name = "github.com/goware/urlx"

[[constraint]]
branch = "master"
name = "github.com/mitchellh/goamz"

[[constraint]]
branch = "v2"
name = "github.com/pressly/chainstore"

[[constraint]]
name = "github.com/pressly/chi"
version = "3.3.2"

[[constraint]]
branch = "master"
name = "github.com/pressly/consistentrd"

[[constraint]]
name = "github.com/pressly/lg"
version = "1.0.2"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.1"

[[constraint]]
branch = "master"
name = "github.com/tobi/airbrake-go"

[[constraint]]
branch = "master"
name = "github.com/unrolled/render"

[[constraint]]
name = "github.com/zenazn/goji"
version = "1.0.0"

[[constraint]]
branch = "master"
name = "golang.org/x/net"

[[constraint]]
name = "gopkg.in/gographics/imagick.v3"
version = "3.2.0"
2 changes: 1 addition & 1 deletion cmd/imgry-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"syscall"
"time"

"github.com/goware/lg"
"github.com/pressly/imgry"
"github.com/pressly/imgry/server"
"github.com/pressly/lg"
"github.com/zenazn/goji/graceful"
)

Expand Down
11 changes: 7 additions & 4 deletions etc/imgry.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,18 @@ api_key = ""
path = "/tmp/imgry/"
mem_cache_size = 100
disk_cache_size = 500
s3_bucket = "imgry-dev"
s3_access_key = ""
s3_secret_key = ""
[[chainstore.s3buckets]]
s3_bucket = "imgry-dev"
s3_access_key = ""
s3_secret_key = ""
s3_region = ""
kms_key = ""

[statsd]
enabled = true
address = "127.0.0.1:8125"
service_name = "imgry"

[ssl]
cert = "/etc/certs/server-cert.pem"
cert = "/etc/certs/server-cert.pem"
key = "/etc/certs/server-key.pem"
Loading