https://github.com/exhuma/task-provider-fabric
https://github.com/exhuma/task-provider-fabric
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/exhuma/task-provider-fabric
- Owner: exhuma
- License: mit
- Created: 2021-07-09T14:23:20.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-24T14:56:06.000Z (almost 5 years ago)
- Last Synced: 2025-01-30T12:32:45.486Z (over 1 year ago)
- Language: TypeScript
- Size: 2.81 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# VS-Code Task Provider for fabric

[](https://github.com/exhuma/task-provider-fabric/issues)
[](https://github.com/exhuma/task-provider-fabric)
[](https://github.com/exhuma/task-provider-fabric)
## Source Code, Issues & Feedback
- [Repository](https://github.com/exhuma/task-provider-fabric)
- [Issue Tracker](https://github.com/exhuma/task-provider-fabric/issues)
## Description
This extension provides VS-Code task executions for tasks defined using
"fabric" (https://www.fabfile.org).
(demo)
## Usage
- Install the extension
- Define tasks in a fabfile (default: `fabfile.py` in the workspace folder)
- Execute the "Tasks: Run Task" command in VS-Code (default shortcut: `CTRL+SHIFT+P`)
- Select "fabric"
- Select the task to run
## Command-Line Arguments
Some tasks require arguments. To add arguments to the task, configure a task (using the gear icon at the right of the task-name) and add the key `args` to the task definition.
### Example
```json
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "fabric",
"task": "the-task-name",
"args": ["--port", "8080"],
"problemMatcher": [],
"label": "Run something"
}
]
}
```