Skip to content

Commit 7136bc4

Browse files
test
1 parent 1071b24 commit 7136bc4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+26869
-1
lines changed

Expense_managemnt/.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.git
3+
.gitignore

Expense_managemnt/.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

Expense_managemnt/.env.example

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Port number
2+
PORT=3000
3+
4+
# URL of the Mongo DB
5+
MONGODB_URL=mongodb://127.0.0.1:27017/node-boilerplate
6+
7+
# JWT
8+
# JWT secret key
9+
JWT_SECRET=thisisasamplesecret
10+
# Number of minutes after which an access token expires
11+
JWT_ACCESS_EXPIRATION_MINUTES=30
12+
# Number of days after which a refresh token expires
13+
JWT_REFRESH_EXPIRATION_DAYS=30
14+
# Number of minutes after which a reset password token expires
15+
JWT_RESET_PASSWORD_EXPIRATION_MINUTES=10
16+
# Number of minutes after which a verify email token expires
17+
JWT_VERIFY_EMAIL_EXPIRATION_MINUTES=10
18+
19+
# SMTP configuration options for the email service
20+
# For testing, you can use a fake SMTP service like Ethereal: https://ethereal.email/create
21+
SMTP_HOST=email-server
22+
SMTP_PORT=587
23+
SMTP_USERNAME=email-server-username
24+
SMTP_PASSWORD=email-server-password
25+
EMAIL_FROM=support@yourapp.com

Expense_managemnt/.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
bin

Expense_managemnt/.eslintrc.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"jest": true
5+
},
6+
"extends": ["airbnb-base", "plugin:jest/recommended", "plugin:security/recommended", "plugin:prettier/recommended"],
7+
"plugins": ["jest", "security", "prettier"],
8+
"parserOptions": {
9+
"ecmaVersion": 2018
10+
},
11+
"rules": {
12+
"no-console": "error",
13+
"func-names": "off",
14+
"no-underscore-dangle": "off",
15+
"consistent-return": "off",
16+
"jest/expect-expect": "off",
17+
"security/detect-object-injection": "off"
18+
}
19+
}

Expense_managemnt/.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Convert text file line endings to lf
2+
* text eol=lf
3+
*.js text

Expense_managemnt/.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Dependencies
2+
node_modules
3+
4+
# yarn error logs
5+
yarn-error.log
6+
7+
# Environment varibales
8+
.env*
9+
!.env*.example
10+
11+
# Code coverage
12+
coverage
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn install

Expense_managemnt/.husky/post-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
git status

Expense_managemnt/.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn lint-staged

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy