-
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.
- Loading branch information
rfaircloth-splunk
committed
Feb 10, 2020
1 parent
230b79c
commit e2db422
Showing
4 changed files
with
38 additions
and
29 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,33 @@ | ||
| { | ||
| // See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
| // for the documentation about the tasks.json format | ||
| "version": "2.0.0", | ||
| "tasks": [ | ||
| { | ||
| "label": "Setup step 1: python venv", | ||
| "type": "shell", | ||
| "command": "python3 -m venv ./venv", | ||
| "windows": { | ||
| "command": "python venv" | ||
| }, | ||
| "group": "Setup", | ||
| "presentation": { | ||
| "reveal": "always", | ||
| "panel": "new" | ||
| } | ||
| }, | ||
| { | ||
| "label": "Setup step 2: python requirements", | ||
| "type": "shell", | ||
| "command": "pip3 install -r requirements.txt", | ||
| "windows": { | ||
| "command": "python requirements" | ||
| }, | ||
| "group": "Setup", | ||
| "presentation": { | ||
| "reveal": "always", | ||
| "panel": "new" | ||
| } | ||
| } | ||
| ] | ||
| } |
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