-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use glide and remove commited vendor folder
Fix Fix
- Loading branch information
Showing
432 changed files
with
119 additions
and
144,627 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.git | ||
public/bower_components/ | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
.env | ||
public/bower_components/ | ||
node_modules/ | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
FROM golang:1.6-alpine | ||
|
||
RUN apk add --update --no-cache git nodejs | ||
RUN apk add --update --no-cache git nodejs curl | ||
RUN npm install -g bower eslint | ||
|
||
ENV GLIDE_VERSION 0.11.1 | ||
RUN curl -sSL https://github.com/Masterminds/glide/releases/download/v$GLIDE_VERSION/glide-v$GLIDE_VERSION-linux-386.tar.gz -o glide.tar.gz \ | ||
&& tar -xzf glide.tar.gz \ | ||
&& mv linux-386/glide /usr/local/bin \ | ||
&& rm -rf glide.tar.gz linux-386 | ||
|
||
RUN go get -u github.com/jteeuwen/go-bindata/... | ||
|
||
RUN mkdir -p /go/src/github.com/MEDIGO/laika | ||
WORKDIR /go/src/github.com/MEDIGO/laika | ||
|
||
COPY glide.yaml /go/src/github.com/MEDIGO/laika/ | ||
COPY glide.lock /go/src/github.com/MEDIGO/laika/ | ||
RUN glide install | ||
|
||
COPY .bowerrc /go/src/github.com/MEDIGO/laika/ | ||
COPY bower.json /go/src/github.com/MEDIGO/laika/ | ||
RUN bower --allow-root install | ||
|
||
COPY . /go/src/github.com/MEDIGO/laika | ||
|
||
RUN go get . | ||
RUN go install . | ||
|
||
CMD [“laika”, "run"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package: github.com/MEDIGO/laika | ||
import: | ||
- package: github.com/DataDog/datadog-go | ||
subpackages: | ||
- statsd | ||
- package: github.com/Masterminds/squirrel | ||
- package: github.com/Sirupsen/logrus | ||
- package: github.com/codegangsta/cli | ||
- package: github.com/go-sql-driver/mysql | ||
- package: github.com/labstack/echo | ||
subpackages: | ||
- engine | ||
- engine/standard | ||
- middleware | ||
- package: github.com/lytics/slackhook | ||
- package: github.com/rubenv/sql-migrate | ||
- package: github.com/russross/meddler | ||
- package: github.com/stretchr/testify | ||
subpackages: | ||
- require | ||
- package: golang.org/x/crypto | ||
subpackages: | ||
- bcrypt | ||
- package: gopkg.in/tylerb/graceful.v1 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.