diff --git a/Dockerfile.tests b/Dockerfile.tests index 8cdf7c37..a74b20b2 100644 --- a/Dockerfile.tests +++ b/Dockerfile.tests @@ -24,7 +24,7 @@ RUN echo "deb http://httpredir.debian.org/debian/ stretch main contrib non-free" # | All Gotenberg related stuff. # | -WORKDIR /go/src/github.com/gulien/gotenberg +WORKDIR /go/src/github.com/thecodingmachine/gotenberg # Installs lint dependencies. RUN go get -u gopkg.in/alecthomas/gometalinter.v2 &&\ diff --git a/LICENSE b/LICENSE index a98b80e4..4188a9bb 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Julien Neuhart +Copyright (c) 2018 TheCodingMachine Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index ad2330fc..a600d493 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@
A stateless API for converting HTML files and Office documents to PDF.
diff --git a/app/context/context.go b/app/context/context.go index 0510e009..55b7d657 100644 --- a/app/context/context.go +++ b/app/context/context.go @@ -6,8 +6,8 @@ import ( "context" "net/http" - "github.com/gulien/gotenberg/app/converter" - ghttp "github.com/gulien/gotenberg/app/http" + "github.com/thecodingmachine/gotenberg/app/converter" + ghttp "github.com/thecodingmachine/gotenberg/app/http" ) type key uint32 diff --git a/app/context/context_test.go b/app/context/context_test.go index e82579ed..b9d14b51 100644 --- a/app/context/context_test.go +++ b/app/context/context_test.go @@ -5,8 +5,8 @@ import ( "net/http/httptest" "testing" - "github.com/gulien/gotenberg/app/converter" - ghttp "github.com/gulien/gotenberg/app/http" + "github.com/thecodingmachine/gotenberg/app/converter" + ghttp "github.com/thecodingmachine/gotenberg/app/http" ) func TestWithContentType(t *testing.T) { diff --git a/app/converter/converter.go b/app/converter/converter.go index 061c391d..2086f440 100644 --- a/app/converter/converter.go +++ b/app/converter/converter.go @@ -7,9 +7,9 @@ import ( "net/http" "os" - gfile "github.com/gulien/gotenberg/app/converter/file" - "github.com/gulien/gotenberg/app/converter/process" - ghttp "github.com/gulien/gotenberg/app/http" + gfile "github.com/thecodingmachine/gotenberg/app/converter/file" + "github.com/thecodingmachine/gotenberg/app/converter/process" + ghttp "github.com/thecodingmachine/gotenberg/app/http" "github.com/satori/go.uuid" ) diff --git a/app/converter/converter_test.go b/app/converter/converter_test.go index a1f69178..5dce20bd 100644 --- a/app/converter/converter_test.go +++ b/app/converter/converter_test.go @@ -10,9 +10,9 @@ import ( "path/filepath" "testing" - "github.com/gulien/gotenberg/app/config" - "github.com/gulien/gotenberg/app/converter/process" - ghttp "github.com/gulien/gotenberg/app/http" + "github.com/thecodingmachine/gotenberg/app/config" + "github.com/thecodingmachine/gotenberg/app/converter/process" + ghttp "github.com/thecodingmachine/gotenberg/app/http" ) func makeRequest(filesPaths ...string) *http.Request { diff --git a/app/converter/file/file.go b/app/converter/file/file.go index df5045dd..48e6fc32 100644 --- a/app/converter/file/file.go +++ b/app/converter/file/file.go @@ -6,7 +6,7 @@ import ( "io" "os" - ghttp "github.com/gulien/gotenberg/app/http" + ghttp "github.com/thecodingmachine/gotenberg/app/http" "github.com/satori/go.uuid" ) diff --git a/app/converter/process/process.go b/app/converter/process/process.go index dc127eba..326538aa 100644 --- a/app/converter/process/process.go +++ b/app/converter/process/process.go @@ -8,8 +8,8 @@ import ( "text/template" "time" - "github.com/gulien/gotenberg/app/config" - gfile "github.com/gulien/gotenberg/app/converter/file" + "github.com/thecodingmachine/gotenberg/app/config" + gfile "github.com/thecodingmachine/gotenberg/app/converter/file" ) var commandsConfig *config.CommandsConfig diff --git a/app/converter/process/process_test.go b/app/converter/process/process_test.go index 0fd703e2..ab97b6f5 100644 --- a/app/converter/process/process_test.go +++ b/app/converter/process/process_test.go @@ -5,8 +5,8 @@ import ( "path/filepath" "testing" - "github.com/gulien/gotenberg/app/config" - gfile "github.com/gulien/gotenberg/app/converter/file" + "github.com/thecodingmachine/gotenberg/app/config" + gfile "github.com/thecodingmachine/gotenberg/app/converter/file" ) func TestLoad(t *testing.T) { diff --git a/app/handlers.go b/app/handlers.go index 6d2e14e7..821c5b67 100644 --- a/app/handlers.go +++ b/app/handlers.go @@ -7,10 +7,10 @@ import ( "net/http" "os" - "github.com/gulien/gotenberg/app/context" - "github.com/gulien/gotenberg/app/converter" - ghttp "github.com/gulien/gotenberg/app/http" - "github.com/gulien/gotenberg/app/logger" + "github.com/thecodingmachine/gotenberg/app/context" + "github.com/thecodingmachine/gotenberg/app/converter" + ghttp "github.com/thecodingmachine/gotenberg/app/http" + "github.com/thecodingmachine/gotenberg/app/logger" "github.com/justinas/alice" ) diff --git a/app/handlers_test.go b/app/handlers_test.go index d66a3040..a46efe30 100644 --- a/app/handlers_test.go +++ b/app/handlers_test.go @@ -10,11 +10,11 @@ import ( "path/filepath" "testing" - "github.com/gulien/gotenberg/app/config" - "github.com/gulien/gotenberg/app/context" - "github.com/gulien/gotenberg/app/converter" - "github.com/gulien/gotenberg/app/converter/process" - ghttp "github.com/gulien/gotenberg/app/http" + "github.com/thecodingmachine/gotenberg/app/config" + "github.com/thecodingmachine/gotenberg/app/context" + "github.com/thecodingmachine/gotenberg/app/converter" + "github.com/thecodingmachine/gotenberg/app/converter/process" + ghttp "github.com/thecodingmachine/gotenberg/app/http" "github.com/justinas/alice" ) diff --git a/main.go b/main.go index d17f03c9..f1b54dbf 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,7 @@ Package main handles the application startup and shutdown. Gotenberg is a stateless API for converting HTML files and Office documents to PDF. -For more information, go to https://github.com/gulien/gotenberg. +For more information, go to https://github.com/thecodingmachine/gotenberg. */ package main @@ -15,10 +15,10 @@ import ( "os/signal" "time" - "github.com/gulien/gotenberg/app" - "github.com/gulien/gotenberg/app/config" - "github.com/gulien/gotenberg/app/converter/process" - "github.com/gulien/gotenberg/app/logger" + "github.com/thecodingmachine/gotenberg/app" + "github.com/thecodingmachine/gotenberg/app/config" + "github.com/thecodingmachine/gotenberg/app/converter/process" + "github.com/thecodingmachine/gotenberg/app/logger" "github.com/gorilla/mux" "github.com/sirupsen/logrus" diff --git a/orbit.yml b/orbit.yml index 722c668c..feb1eaca 100644 --- a/orbit.yml +++ b/orbit.yml @@ -9,7 +9,7 @@ tasks: short: Runs tests inside a container run: - docker build -t gotenberg:tests -f Dockerfile.tests . - - docker run --rm -e "VERSION={{ .Orbit.Version }}" -v "$(pwd)/_ci:/go/src/github.com/gulien/gotenberg/_ci" gotenberg:tests + - docker run --rm -e "VERSION={{ .Orbit.Version }}" -v "$(pwd)/_ci:/go/src/github.com/thecodingmachine/gotenberg/_ci" gotenberg:tests - use: build short: Builds a Linux binary and the Docker image