Skip to content

Commit 8335f78

Browse files
authored
Recreated directory inadvertently added to gitignore (#139)
The newest members of the team found import statement errors when first pulling from master. Concluded that "security" directory had been placed in gitignore inadvertently. Reinserting "security" directory and the two corresponding files to prevent the issue from occurring again.
2 parents 364ea45 + b308cb5 commit 8335f78

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ yarn.lock
99
src/database/docketeerdb
1010
server/database/docketeerdb
1111
dist/
12-
security/
1312
.env
1413

1514
coverage/

security/email.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
host: 'smtp.gmail.com',
3+
port: 465,
4+
username: '[email protected]',
5+
password: 'belugas',
6+
};

security/sysadmin.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
phone: '',
3+
email: '',
4+
};

0 commit comments

Comments
 (0)