Skip to content
This repository has been archived by the owner on Jan 27, 2022. It is now read-only.

Pull latest changes #1

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
939e728
doc update
pedrosousabarreto Apr 2, 2019
b57d33a
replaced usage of NODE_ENV with APP_ENV so it doesn't collide with no…
pedrosousabarreto Apr 11, 2019
6ebddf1
1.0.2
pedrosousabarreto Apr 11, 2019
a7e6887
fixed express not running if RUN_EXPRESS_APP was missing
pedrosousabarreto Apr 11, 2019
2d6e1a4
1.0.3
pedrosousabarreto Apr 11, 2019
e1c255f
fixed bug retrieving secrets; added tests for override configs
pedrosousabarreto Apr 18, 2019
1908a57
1.0.4
pedrosousabarreto Apr 18, 2019
6a3d763
AWSSecretsManagerProvider can now assume role, ctor takes an addition…
pedrosousabarreto Apr 29, 2019
cb26836
1.0.5
pedrosousabarreto Apr 29, 2019
c7de010
fixed returning null when params or secrets evaluated to falsy expres…
pedrosousabarreto May 1, 2019
3d3d56a
Added handler for sigterm event
GuilhermeSCP May 6, 2019
17a92a5
Merge branch 'DEIMOS-1425_handle_sigterm' of https://github.com/Guilh…
pedrosousabarreto May 6, 2019
47fcb56
handling SIGTERM as well as SIGINT + better logging
pedrosousabarreto May 6, 2019
3f6d56c
Merge branch 'GuilhermeSCP-DEIMOS-1425_handle_sigterm'
pedrosousabarreto May 6, 2019
6e404f5
1.0.6
pedrosousabarreto May 6, 2019
67525a5
refactor for simpler configs and params
pedrosousabarreto May 21, 2019
99ce92e
added missing config provider mock
pedrosousabarreto May 21, 2019
ed8a7b6
fixed gitignore for idea files
pedrosousabarreto May 21, 2019
ad2fdb0
Merge pull request #10 from pedrosousabarreto/new-configs
pedrosousabarreto May 21, 2019
a115d34
2.0.0
pedrosousabarreto May 21, 2019
9d440ac
Merge branch 'master' of github.com:pedrosousabarreto/node-microsvc-lib
pedrosousabarreto May 21, 2019
a105bde
added details to the env var overrides file mechanism
pedrosousabarreto May 21, 2019
bc5570b
2.0.1
pedrosousabarreto May 21, 2019
819c3b4
added json logs to file with bunyan
pedrosousabarreto May 22, 2019
8e15fb5
2.1.0
pedrosousabarreto May 22, 2019
29e3683
Added JSONLogger
MartenSies Jun 12, 2019
563b357
Merge branch 'MartenSies-json_stdout_logger'
pedrosousabarreto Jun 13, 2019
247d6ff
2.1.1
pedrosousabarreto Jun 13, 2019
eeaa51a
Added jenkinsfile
MartenSies Jul 18, 2019
eead8f9
Added makefile
MartenSies Jul 18, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ typings/
.DS_Store

#IDE metadata
**.idea/**
.idea/

/lib

3 changes: 3 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@Library('Common@master') _

buildAndDeployLib('node', '10')
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
build:
@npm ci && npm run build

bump_version:
@git fetch https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/Bynder/js-components-lib.git master
@git config --global user.email "[email protected]"
@git config --global user.name "Your bro Jenkins"
@npm version patch
@git push https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/Bynder/js-components-lib.git HEAD:master
@npm pack
ls
Loading