-
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.
* Initial work for JS client Signed-off-by: worksofliam <[email protected]> * Use correct package Signed-off-by: worksofliam <[email protected]> --------- Signed-off-by: worksofliam <[email protected]>
- Loading branch information
1 parent
763b447
commit b2c8a9c
Showing
15 changed files
with
1,118 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
PORT=3000 | ||
DB_HOST=hostname | ||
DB_ID=userprofile | ||
DB_PASSWORD=x |
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,3 @@ | ||
node_modules | ||
build | ||
.env |
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,55 @@ | ||
[ | ||
{ | ||
"name": "Create RPGLE Program", | ||
"command": "CRTBNDRPG PGM(&CURLIB/&NAME) SRCSTMF('&RELATIVEPATH') OPTION(*EVENTF) DBGVIEW(*SOURCE) TGTCCSID(*JOB)", | ||
"deployFirst": true, | ||
"environment": "ile", | ||
"extensions": [ | ||
"RPGLE" | ||
] | ||
}, | ||
{ | ||
"name": "Create RPGLE Module", | ||
"command": "CRTRPGMOD MODULE(&CURLIB/&NAME) SRCSTMF('&RELATIVEPATH') OPTION(*EVENTF) DBGVIEW(*SOURCE) TGTCCSID(*JOB)", | ||
"deployFirst": true, | ||
"environment": "ile", | ||
"extensions": [ | ||
"RPGLE" | ||
] | ||
}, | ||
{ | ||
"name": "Create SQLRPGLE Program", | ||
"command": "CRTSQLRPGI OBJ(&CURLIB/&NAME) SRCSTMF('&RELATIVEPATH') OPTION(*EVENTF) DBGVIEW(*SOURCE) CLOSQLCSR(*ENDMOD) CVTCCSID(*JOB) COMPILEOPT('TGTCCSID(*JOB)') RPGPPOPT(*LVL2)", | ||
"deployFirst": true, | ||
"environment": "ile", | ||
"extensions": [ | ||
"SQLRPGLE" | ||
] | ||
}, | ||
{ | ||
"name": "Create SQLRPGLE Module", | ||
"command": "CRTSQLRPGI OBJ(&CURLIB/&NAME) SRCSTMF('&RELATIVEPATH') OBJTYPE(*MODULE) OPTION(*EVENTF) DBGVIEW(*SOURCE) CLOSQLCSR(*ENDMOD) CVTCCSID(*JOB) COMPILEOPT('TGTCCSID(*JOB)') RPGPPOPT(*LVL2)", | ||
"deployFirst": true, | ||
"environment": "ile", | ||
"extensions": [ | ||
"SQLRPGLE" | ||
] | ||
}, | ||
{ | ||
"extensions": [ | ||
"SQL", | ||
"TABLE", | ||
"VIEW", | ||
"SQLPRC", | ||
"SQLUDF", | ||
"SQLUDT", | ||
"SQLTRG", | ||
"SQLALIAS", | ||
"SQLSEQ" | ||
], | ||
"name": "Run SQL Statements (RUNSQLSTM)", | ||
"command": "RUNSQLSTM SRCSTMF('&FULLPATH') COMMIT(*NONE) NAMING(*SQL)", | ||
"deployFirst": true, | ||
"environment": "ile" | ||
} | ||
] |
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,23 @@ | ||
{ | ||
// 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 Program", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"program": "${workspaceFolder}/build/index.js", | ||
"sourceMaps": true, | ||
"outFiles": [ | ||
"${workspaceFolder}/build/**/*.js" | ||
], | ||
"preLaunchTask": "npm: build:dev", | ||
"envFile": "${workspaceFolder}/.env" | ||
} | ||
] | ||
} |
Oops, something went wrong.