-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Develop many features Co-authored-by: Lam Ngoc Khuong (khuongln-1346) <lam.ngoc.khuong@sun-asterisk.com>
- Loading branch information
1 parent
f4bcf21
commit 81a3456
Showing
52 changed files
with
1,573 additions
and
1,176 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
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 |
---|---|---|
|
@@ -116,3 +116,6 @@ dist | |
# IDE, Editor | ||
.vscode | ||
.idea | ||
|
||
# App | ||
data.json |
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 @@ | ||
web: npx prisma migrate deploy && npm start |
File renamed without changes.
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
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
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,12 @@ | ||
{ | ||
"watch": [ | ||
"src", | ||
".env" | ||
], | ||
"ext": "js,ts,json", | ||
"ignore": [ | ||
"src/**/*.spec.ts", | ||
"src/**/*.test.ts" | ||
], | ||
"exec": "node --inspect=0.0.0.0:9229 -r ts-node/register -r tsconfig-paths/register src/server.ts" | ||
} |
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,12 +1,13 @@ | ||
{ | ||
"watch": [ | ||
"src", | ||
".env" | ||
], | ||
"ext": "js,ts,json", | ||
"ignore": [ | ||
"src/**/*.spec.ts", | ||
"src/**/*.test.ts" | ||
], | ||
"exec": "ts-node -r tsconfig-paths/register --transpile-only src/server.ts" | ||
} | ||
"watch": [ | ||
"src", | ||
"static", | ||
".env" | ||
], | ||
"ext": "js,ts,json,pr", | ||
"ignore": [ | ||
"src/**/*.spec.ts", | ||
"src/**/*.test.ts" | ||
], | ||
"exec": "ts-node -r tsconfig-paths/register --transpile-only src/server.ts" | ||
} |
Oops, something went wrong.