File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 15
15
16
16
# Restoration of node_modules from cache.
17
17
- restore_cache :
18
- key : docker-tc-email-service-{{ checksum "package.json" }}
18
+ key : docker-tc-email-service-{{ checksum "package-lock .json" }}
19
19
20
20
# Build of Docker image.
21
21
- run :
24
24
25
25
# Caching node modules.
26
26
- save_cache :
27
- key : docker-tc-email-service-{{ checksum "package.json" }}
27
+ key : docker-tc-email-service-{{ checksum "package-lock .json" }}
28
28
paths :
29
29
- node_modules
30
30
@@ -82,5 +82,5 @@ workflows:
82
82
- " build-dev-deploy-test " :
83
83
filters :
84
84
branches :
85
- only : " tc-email-delta-patch "
85
+ only : " dev "
86
86
Original file line number Diff line number Diff line change 4
4
module . exports = {
5
5
LOG_LEVEL : process . env . LOG_LEVEL || 'debug' ,
6
6
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
- } ,
13
7
} ;
You can’t perform that action at this time.
0 commit comments