Skip to content
This repository was archived by the owner on Nov 7, 2019. It is now read-only.

Commit 284d994

Browse files
committed
archive -> core
1 parent 55533db commit 284d994

File tree

705 files changed

+88
-253590
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

705 files changed

+88
-253590
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
jobs:
33
build:
4-
working_directory: /go/src/github.com/datatogether/task-mgmt
4+
working_directory: /go/src/github.com/datatogether/task_mgmt
55
docker:
66
- image: circleci/cci-demo-go-primary:0.0.2
77
environment:
@@ -57,8 +57,8 @@ jobs:
5757
command: |
5858
if [ $CIRCLE_BRANCH = 'master' ]; then
5959
TAG=0.1.$CIRCLE_BUILD_NUM
60-
docker build -t datatogether/task-mgmt:latest -t datatogether/task-mgmt:$TAG .
60+
docker build -t datatogether/task_mgmt:latest -t datatogether/task_mgmt:$TAG .
6161
docker login -u $DOCKER_USER -p $DOCKER_PASS
62-
docker push datatogether/task-mgmt:$TAG
63-
docker push datatogether/task-mgmt:latest
62+
docker push datatogether/task_mgmt:$TAG
63+
docker push datatogether/task_mgmt:latest
6464
fi

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.DS_Store
22
gin-bin
3-
task-mgmt
3+
task_mgmt
44
coverage.out
55
config.*.json
66
*.env

Dockerfile

+3-5
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ EXPOSE 3000
77
# RUN go-wrapper install github.com/codegangsta/gin
88

99
# Copy the local package files to the container’s workspace.
10-
ADD . /go/src/github.com/datatogether/task-mgmt
11-
# WORKDIR /go/src/github.com/datatogether/task-mgmt
12-
# CMD ["gin", "-i"]
10+
ADD . /go/src/github.com/datatogether/task_mgmt
1311

1412
# Install api binary globally within container
15-
RUN go install github.com/datatogether/task-mgmt
13+
RUN go install github.com/datatogether/task_mgmt
1614
# Set binary as entrypoint
17-
ENTRYPOINT /go/bin/task-mgmt
15+
ENTRYPOINT /go/bin/task_mgmt
1816

1917

2018

Godeps/Godeps.json

-336
This file was deleted.

Godeps/Readme

-5
This file was deleted.

0 commit comments

Comments
 (0)