Thanks to visit codestin.com
Credit goes to github.com

Skip to content

docs: dedicated instructions for Windows installer #5924

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 31, 2023
Merged
Show file tree
Hide file tree
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
Binary file added docs/images/install/windows-installer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions docs/install/windows.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Windows

Use the Windows installer to download the CLI and add Coder to `PATH`. Alternatively, you can install Coder on Windows via a [standalone binary](./binary.md).

1. Download the Windows installer from [GitHub releases](https://github.com/coder/coder/releases) or from `winget`

```powershell
winget install Coder.Coder
```

2. Run the application

![Windows installer](../images/install/windows-installer.png)

3. Start a Coder server

```console
# Automatically sets up an external access URL on *.try.coder.app
coder server

# Requires a PostgreSQL instance (version 13 or higher) and external access URL
coder server --postgres-url <url> --access-url <url>
```

> Set `CODER_ACCESS_URL` to the external URL that users and workspaces will use to
> connect to Coder. This is not required if you are using the tunnel. Learn more
> about Coder's [configuration options](../admin/configure.md).

4. Visit the Coder URL in the logs to set up your first account, or use the CLI.

## Next steps

- [Quickstart](../quickstart.md)
- [Configuring Coder](../admin/configure.md)
- [Templates](../templates.md)
5 changes: 5 additions & 0 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
"description": "Install Coder with Docker / docker-compose",
"path": "./install/docker.md"
},
{
"title": "Windows",
"description": "Install Coder on Windows",
"path": "./install/windows.md"
},
{
"title": "Standalone binaries",
"description": "Download binaries for macOS, Windows, and Linux",
Expand Down