-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated development guide with details (#268)
- Loading branch information
Gene Lee
authored
Aug 23, 2019
1 parent
8aef8a5
commit 6728e39
Showing
4 changed files
with
255 additions
and
111 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,4 @@ | ||
MSSQL_CLI_SERVER= | ||
MSSQL_CLI_DATABASE= | ||
MSSQL_CLI_USER= | ||
MSSQL_CLI_PASSWORD= |
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,25 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Launch mssql-cli (integrated)", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/mssqlcli/main.py", | ||
"env": { | ||
"PYTHONPATH":"${workspaceRoot};${env:PYTHONPATH}" | ||
}, | ||
"console": "integratedTerminal", | ||
}, | ||
{ | ||
"name": "Python: Launch mssql-cli (external)", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/mssqlcli/main.py", | ||
"env": { | ||
"PYTHONPATH":"${workspaceRoot};${env:PYTHONPATH}" | ||
}, | ||
"console": "externalTerminal", | ||
} | ||
] | ||
} |
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 @@ | ||
{ | ||
"python.pythonPath": "${workspaceRoot}/env/Scripts/python.exe", | ||
"python.linting.pylintEnabled": true, | ||
"python.testing.nosetestsEnabled": true, | ||
"python.testing.nosetestArgs": [ | ||
"tests", | ||
"mssqlcli/jsonrpc/tests", | ||
"mssqlcli/jsonrpc/contracts/tests" | ||
], | ||
"python.testing.pytestEnabled": false, | ||
"python.testing.unittestEnabled": false | ||
} |
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