-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from rcanessa89/dev
Dev
- Loading branch information
Showing
49 changed files
with
1,726 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch NestJS", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["run-script", "start:dev"], | ||
"port": 5000, | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"git.ignoreLimitWarning": true | ||
"git.ignoreLimitWarning": true, | ||
"editor.tabSize": 2, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export default { | ||
HOST: 'http://localhost', | ||
PORT: 8080, | ||
DB_HOST: 'localhost', | ||
DB_PORT: 3306, | ||
DB_USERNAME: 'root', | ||
DB_PASSWORD: 'EDhunter89', | ||
DB_NAME: 'test', | ||
JWT_SECRET_KEY: 'secretKey', | ||
JWT_EXPIRATION: 3600, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
{ | ||
"watch": [ | ||
"src" | ||
], | ||
"ext": "ts", | ||
"ignore": [ | ||
"src/**/*.spec.ts" | ||
], | ||
"exec": "ts-node -r tsconfig-paths/register src/main.ts" | ||
"watch": ["src"], | ||
"ext": "ts", | ||
"ignore": ["src/**/*.spec.ts"], | ||
"exec": "node -r tsconfig-paths/register --inspect=5000 --require ts-node/register src/main.ts" | ||
} |
Oops, something went wrong.