Skip to content

Commit 84aa98f

Browse files
committed
Removed private deployment configuration files and CICD artifacts
1 parent 5c0d54c commit 84aa98f

File tree

25 files changed

+57
-641
lines changed

25 files changed

+57
-641
lines changed

DEPLOY.md

Lines changed: 0 additions & 97 deletions
This file was deleted.

cla-backend-go/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ build:
3232
dep ensure
3333
go build -o $(SERVICE) \
3434
-ldflags " \
35-
-X github.com/LF-Engineering/cla-monorepo/cla-backend-go/cmd.BuildStamp=`date -u '+%Y-%m-%d_%I:%M:%S%p'` \
36-
-X github.com/LF-Engineering/cla-monorepo/cla-backend-go/cmd.GitHash=`git rev-parse HEAD`" \
35+
-X github.com/communitybridge/easy-cla/cla-backend-go/cmd.BuildStamp=`date -u '+%Y-%m-%d_%I:%M:%S%p'` \
36+
-X github.com/communitybridge/easy-cla/cla-backend-go/cmd.GitHash=`git rev-parse HEAD`" \
3737
.
3838

3939
buildlinux:

cla-backend-go/auth/authorizer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package auth
66
import (
77
"errors"
88

9-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/user"
9+
"github.com/communitybridge/easy-cla/cla-backend-go/user"
1010
)
1111

1212
const (

cla-backend-go/cmd/server.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ import (
1010
"net/url"
1111
"os"
1212

13-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/auth"
14-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/company"
15-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/config"
16-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/docraptor"
17-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/restapi"
18-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/restapi/operations"
19-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/github"
20-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/health"
21-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/template"
22-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/user"
23-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/whitelist"
13+
"github.com/communitybridge/easy-cla/cla-backend-go/auth"
14+
"github.com/communitybridge/easy-cla/cla-backend-go/company"
15+
"github.com/communitybridge/easy-cla/cla-backend-go/config"
16+
"github.com/communitybridge/easy-cla/cla-backend-go/docraptor"
17+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/restapi"
18+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/restapi/operations"
19+
"github.com/communitybridge/easy-cla/cla-backend-go/github"
20+
"github.com/communitybridge/easy-cla/cla-backend-go/health"
21+
"github.com/communitybridge/easy-cla/cla-backend-go/template"
22+
"github.com/communitybridge/easy-cla/cla-backend-go/user"
23+
"github.com/communitybridge/easy-cla/cla-backend-go/whitelist"
2424

2525
"github.com/aws/aws-sdk-go/aws"
2626
"github.com/aws/aws-sdk-go/aws/session"

cla-backend-go/company/handlers.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package company
22

33
import (
4-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/models"
5-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/restapi/operations"
6-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/user"
4+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/models"
5+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/restapi/operations"
6+
"github.com/communitybridge/easy-cla/cla-backend-go/user"
77

88
"github.com/go-openapi/runtime/middleware"
99
)

cla-backend-go/company/service.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"errors"
55
"fmt"
66

7-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/models"
8-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/user"
7+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/models"
8+
"github.com/communitybridge/easy-cla/cla-backend-go/user"
99

1010
"github.com/aws/aws-sdk-go/aws"
1111
"github.com/aws/aws-sdk-go/aws/session"

cla-backend-go/contractgroup/handlers.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
package contractgroup
55

66
import (
7-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/models"
8-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/restapi/operations"
9-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/restapi/operations/contract_group"
7+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/models"
8+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/restapi/operations"
9+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/restapi/operations/contract_group"
1010

1111
"github.com/go-openapi/runtime/middleware"
1212
)

cla-backend-go/contractgroup/repository.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"context"
88
"database/sql"
99

10-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/models"
10+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/models"
1111
"github.com/aws/aws-sdk-go/aws/session"
1212

1313
"github.com/jmoiron/sqlx"

cla-backend-go/contractgroup/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"context"
88
"fmt"
99

10-
"github.com/LF-Engineering/cla-monorepo/cla-backend-go/gen/models"
10+
"github.com/communitybridge/easy-cla/cla-backend-go/gen/models"
1111
"github.com/aymerick/raymond"
1212
)
1313

cla-backend-go/db/demoData.sql

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
VALUES ('11ebaa98-3471-4fcf-99e8-729549e4f326','Test user');
66

77
INSERT INTO cla."user" (user_id, "name")
8-
VALUES ('***REMOVED***','Test user 2');
8+
VALUES ('d76bf2b0-0593-407b-a9fe-d6532f5ace38','Test user 2');
99

1010
INSERT INTO cla.user_auth_provider(user_id, provider, provider_user_id)
1111
VALUES ('11ebaa98-3471-4fcf-99e8-729549e4f326', 'lfid', 'lfid_username');
@@ -14,10 +14,10 @@
1414
VALUES ('11ebaa98-3471-4fcf-99e8-729549e4f326', 'github', 'github_username');
1515

1616
INSERT INTO cla.user_auth_provider(user_id, provider, provider_user_id)
17-
VALUES ('***REMOVED***', 'lfid', 'foobarski');
17+
VALUES ('d76bf2b0-0593-407b-a9fe-d6532f5ace38', 'lfid', 'foobarski');
1818

1919
INSERT INTO cla.user_auth_provider(user_id, provider, provider_user_id)
20-
VALUES ('***REMOVED***', 'github', 'user two');
20+
VALUES ('d76bf2b0-0593-407b-a9fe-d6532f5ace38', 'github', 'user two');
2121

2222
INSERT INTO cla.project_manager(user_id, project_sfdc_id)
2323
VALUES ('11ebaa98-3471-4fcf-99e8-729549e4f326', 'sfdc_id_one');
@@ -26,13 +26,13 @@
2626
VALUES ('11ebaa98-3471-4fcf-99e8-729549e4f326', 'sfdc_id_two');
2727

2828
INSERT INTO cla.project_manager(user_id, project_sfdc_id)
29-
VALUES ('***REMOVED***', 'sfdc_id_one');
29+
VALUES ('d76bf2b0-0593-407b-a9fe-d6532f5ace38', 'sfdc_id_one');
3030

3131
INSERT INTO cla.project_manager(user_id, project_sfdc_id)
32-
VALUES ('***REMOVED***', 'sfdc_id_two');
32+
VALUES ('d76bf2b0-0593-407b-a9fe-d6532f5ace38', 'sfdc_id_two');
3333

3434
INSERT INTO cla."user" (user_id, "name")
35-
VALUES ('***REMOVED***','Test user 3');
35+
VALUES ('fd1abddd-a370-4de8-a95d-0bec5b21e485','Test user 3');
3636

3737
-- COMPANY
3838
INSERT INTO cla.company (company_id, "name")
@@ -165,7 +165,7 @@
165165
INSERT INTO cla.cla_manager
166166
(user_id, corporate_cla_group_id)
167167
VALUES
168-
('***REMOVED***',
168+
('d76bf2b0-0593-407b-a9fe-d6532f5ace38',
169169
'e630255b-7974-47f1-969f-2b9fb3d271b4');
170170

171171
--Docusign document
@@ -219,7 +219,7 @@
219219
signed)
220220
VALUES ('741fb220-7b79-41ed-aec4-76e49dc48fa3',
221221
'35ef4864-5174-4394-b07e-408fa1247cb6',
222-
'***REMOVED***',
222+
'd76bf2b0-0593-407b-a9fe-d6532f5ace38',
223223
'33473f71-b696-4547-bb13-abb0e6aec910',
224224
false);
225225

@@ -258,8 +258,8 @@
258258
'1234',
259259
'LDAP group name',
260260
'ldap url',
261-
'***REMOVED***',
262-
'***REMOVED***');
261+
'd76bf2b0-0593-407b-a9fe-d6532f5ace38',
262+
'd76bf2b0-0593-407b-a9fe-d6532f5ace38');
263263

264264

265265

0 commit comments

Comments
 (0)