Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

docs: Move task docs out of devcontainers #2046

Merged
merged 1 commit into from
Mar 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions book/src/contributing/developing-with-dev-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,3 @@ is on developing with VS Code in a container by
To use a Dev Container on a local computer with VS Code, install the
[VS Code Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
and its system requirements. Then refer to the links above to get started.

## Using PRQL in a Dev Container

[Task](https://taskfile.dev/) is installed in the container for quick access to
tasks defined on the `Taskfiles.yml`.

Here are some useful commands available in the container.

- `task -l` lists all the available tasks.
- `task run-book` starts an `mdbook` server. As you edit the files of the
Language Book (in the `book` directory), `mdbook` rebuilds those pages.
(Port 3000)
- `task run-website` starts a `hugo` server. As you edit the files (in the
`website` directory), `hugo` rebuilds those pages. (Port 1313)
- `task run-playground` starts a Node server to build the Playground. As you
edit the files (in the `playground` directory), the server rebuilds those
pages. (Port 3000)
- `task WHAT ELSE?` _Provide explanation of other useful commands._