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

Skip to content

Commit 51786ea

Browse files
committed
Update installation guide with detailed steps
Add detailed steps for installing Coder using different methods: - Single CLI for Coder server and client - Release channels: mainline and stable Installation methods: - For Linux/macOS: ```sh curl -L https://coder.com/install.sh | sh ``` - For Windows: - Available on [GitHub releases](https://github.com/coder/coder/releases) - Visual C++ Runtime required for PostgreSQL - Alternatively, use `winget`: ```powershell winget install Coder.Coder ``` Post-install steps: - Start Coder server: ```sh coder server ``` - Log in to existing deployment: ```sh coder login https://coder.example.com ``` Next steps: - [Create your first template](../templates/tutorial.md)
1 parent a4d5201 commit 51786ea

File tree

1 file changed

+63
-1
lines changed

1 file changed

+63
-1
lines changed

docs/install/README.md

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,67 @@
11
# Installing Coder
22

3-
TODO: Make this look great
3+
A single CLI (`coder`) is used for both the Coder server and the client.
4+
5+
We support two release channels: mainline and stable - read the
6+
[Releases](./releases.md) page to learn more about which best suits your team.
7+
8+
There are several ways to install Coder. For production deployments with 50+
9+
users, we recommend [installing on Kubernetes](./kubernetes.md). Otherwise, you
10+
can install Coder on your local machine or on a VM:
11+
12+
<div class="tabs">
13+
14+
## Linux/macOS
15+
16+
Our install script is the fastest way to install Coder on Linux/macOS:
17+
18+
```sh
19+
curl -L https://coder.com/install.sh | sh
20+
```
21+
22+
Refer to [GitHub releases](https://github.com/coder/coder/releases) for
23+
alternate installation methods (e.g. standalone binaries, system packages).
24+
25+
## Windows
26+
27+
> **Important:** If you plan to use the built-in PostgreSQL database, you will
28+
> need to ensure that the
29+
> [Visual C++ Runtime](https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist#latest-microsoft-visual-c-redistributable-version)
30+
> is installed.
31+
32+
Use [GitHub releases](https://github.com/coder/coder/releases) to download the
33+
Windows installer (`.msi`) or standalone binary (`.exe`).
34+
35+
![Windows setup wizard](../images/install/windows-installer.png)
36+
37+
Alternatively, you can use the
38+
[`winget`](https://learn.microsoft.com/en-us/windows/package-manager/winget/#use-winget)
39+
package manager to install Coder:
40+
41+
```powershell
42+
winget install Coder.Coder
43+
```
44+
45+
## Other
446

547
<children></children>
48+
49+
</div>
50+
51+
To start the Coder server:
52+
53+
```sh
54+
coder server
55+
```
56+
57+
![Coder install](../images/install/coder-setup.png)
58+
59+
To log in to an existing Coder deployment:
60+
61+
```sh
62+
coder login https://coder.example.com
63+
```
64+
65+
## Next up
66+
67+
- [Create your first template](../templates/tutorial.md)

0 commit comments

Comments
 (0)