Skip to content

Commit 4ce9d3b

Browse files
author
Sachin Maheshwari
committed
correcting deployment branch in circleci.
1 parent 83fadc2 commit 4ce9d3b

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
# Restoration of node_modules from cache.
1717
- restore_cache:
18-
key: docker-tc-email-service-{{ checksum "package.json" }}
18+
key: docker-tc-email-service-{{ checksum "package-lock.json" }}
1919

2020
# Build of Docker image.
2121
- run:
@@ -24,7 +24,7 @@ jobs:
2424

2525
# Caching node modules.
2626
- save_cache:
27-
key: docker-tc-email-service-{{ checksum "package.json" }}
27+
key: docker-tc-email-service-{{ checksum "package-lock.json" }}
2828
paths:
2929
- node_modules
3030

@@ -82,5 +82,5 @@ workflows:
8282
- "build-dev-deploy-test":
8383
filters:
8484
branches:
85-
only: "tc-email-delta-patch"
85+
only: "dev"
8686

config/test.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,4 @@
44
module.exports = {
55
LOG_LEVEL: process.env.LOG_LEVEL || 'debug',
66
PORT: process.env.PORT || 4000,
7-
KAFKA_TOPIC_PREFIX: process.env.KAFKA_TOPIC_PREFIX || 'joan-26673.',
8-
// mapping from event type to sendgrid email template id
9-
TEMPLATE_MAP: {
10-
'email.project.created': 'f6f1e082-b12d-4117-a9f1-509013624465',
11-
'email.project.updated': 'fb89a4e1-cf42-4d7d-9f03-c22a601a5554',
12-
},
137
};

0 commit comments

Comments
 (0)