Skip to content

Commit

Permalink
Clarify Codespaces work and add in automatic remote dev setup (swiftl…
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTim authored Jan 12, 2022
1 parent 86d858e commit 27dbb88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/remote-dev.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Visual Studio Code Remote Development

[VSCode Remote Development](https://code.visualstudio.com/docs/remote/containers) allows you to run your code and environment in a container. This is especially useful for Swift when developing on macOS and deploying to Linux. You can ensure there are no compatibility issues in Foundation when running your code.
[VSCode Remote Development](https://code.visualstudio.com/docs/remote/containers) allows you to run your code and environment in a container. This is especially useful for Swift when developing on macOS and deploying to Linux. You can ensure there are no compatibility issues in Foundation when running your code. The extension also works with [GitHub Codespaces](https://github.com/features/codespaces) to allow you to write your code on the web.

## Requirements

Expand Down Expand Up @@ -57,9 +57,9 @@ This will use the `Dockerfile` provided in `.devcontainer`. Create that file and
FROM swift:5.5
```

<!-- ### Automatic Setup
### Automatic Setup

VSCode allows you to automatically configure your project with a dev container. In the command palette (`F1`) choose **Remote-Containers: Add Development Container Configuration Files...** and choose Swift. -->
VSCode allows you to automatically configure your project with a dev container. In the command palette (`F1`) choose **Remote-Containers: Add Development Container Configuration Files...** and choose Swift.

### Running in a container

Expand Down

0 comments on commit 27dbb88

Please sign in to comment.