Develop Swift based applications. Includes everything you need to get up and running.
Metadata | Value |
---|---|
Contributors | The VS Code Team, cloudnull |
Definition type | Dockerfile |
Works in Codespaces | Yes |
Container host OS support | Linux, macOS, Windows |
Languages, platforms | Swift |
While the definition itself works unmodified, you can select the version of Swift the container uses by updating the VARIANT
arg in the included devcontainer.json
(and rebuilding if you've already created the container).
"args": { "VARIANT": "4" }
Given how frequently web applications use Node.js for front end code, this container also includes an optional install of Node.js. You can enable installation and change the version of Node.js installed or disable its installation by updating the args
property in .devcontainer/devcontainer.json
.
"args": {
"VARIANT": "4",
"INSTALL_NODE": "true",
"NODE_VERSION": "10",
}
-
If this is your first time using a development container, please follow the getting started steps to set up your machine.
-
To use VS Code's copy of this definition:
- Start VS Code and open your project folder.
- Press F1 select and Remote-Containers: Add Development Container Configuration Files... from the command palette.
- Select the Swift definition.
-
To use latest-and-greatest copy of this definition from the repository:
- Clone this repository.
- Copy the contents of
containers/swift/.devcontainer
to the root of your project folder. - Start VS Code and open your project folder.
-
After following step 2 or 3, the contents of the
.devcontainer
folder in your project can be adapted to meet your needs. -
Finally, press F1 and run Remote-Containers: Reopen Folder in Container to start using the definition.
This definition includes some test code that will help you verify it is working as expected on your system. Follow these steps:
- If this is your first time using a development container, please follow the getting started steps to set up your machine.
- Clone this repository.
- Start VS Code, press F1, and select Remote-Containers: Open Folder in Container...
- Select the
containers/swift
folder. - After the folder has opened in the container, press F5 to start the project.
- You should see "Hello, remote world!" in the Debug Console after the program executes.
- From here, you can add breakpoints or edit the contents of the
test-project
folder to do further testing.
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See LICENSE.