Skip to content

Commit

Permalink
Add 'backend/' from commit '68057a54af329e16f91b9a75115673ef2cf272b9'
Browse files Browse the repository at this point in the history
git-subtree-dir: backend
git-subtree-mainline: 9e1b277
git-subtree-split: 68057a5
  • Loading branch information
Gonzagadavid committed Feb 17, 2022
2 parents 9e1b277 + 68057a5 commit 7079b90
Show file tree
Hide file tree
Showing 59 changed files with 14,024 additions and 0 deletions.
14 changes: 14 additions & 0 deletions backend/.env-eg
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# porta onde redará o sevidor backend
PORT = 3800

# segredo que será usado para gerar o token
SECRET = segredo1234

# porta onde rodará o frontend da aplicação
FRONTENDAPPDEV = http://localhost:3000

# url do seu MongoDB
MONGO_DB_URL = localhost

# nome do banco de dados utilizado na aplicação
DB_NAME = TodoList
1 change: 1 addition & 0 deletions backend/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
jest.config.mjs
17 changes: 17 additions & 0 deletions backend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"env": {
"es2021": true,
"node": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"import/extensions": "off",
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
}
}
5 changes: 5 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules

.env

/coverage
Loading

0 comments on commit 7079b90

Please sign in to comment.