You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-12
Original file line number
Diff line number
Diff line change
@@ -61,16 +61,18 @@ release](https://github.com/coder/coder/releases) on a system with at least 1
61
61
CPU core and 2 GB RAM:
62
62
63
63
1. Download the [release asset](https://github.com/coder/coder/releases) appropriate for your operating system
64
-
1. Unzip the folder you just downloaded, and move the `coder` executable to a
65
-
location that's on your `PATH`
64
+
1. Unzip the folder you just downloaded, and move the `coder` executable to a location that's on your `PATH`
66
65
67
-
> Make sure you have the appropriate credentials for your cloud provider (e.g.,
68
-
> access key ID and secret access key for AWS).
66
+
```sh
67
+
# ex. MacOS and Linux
68
+
mv coder /usr/local/bin
69
+
```
69
70
70
-
You can set up a temporary deployment, a production deployment, or a system service:
71
+
Windows: see [this guide](https://answers.microsoft.com/en-us/windows/forum/all/adding-path-variable/97300613-20cb-4d85-8d0e-cc9d3549ba23) on adding a folder to `PATH`
71
72
72
-
- To set up a **temporary deployment**, start with dev mode (all data is in-memory and is
73
-
destroyed on exit):
73
+
There are a few ways to run Coder:
74
+
75
+
- To run a **temporary deployment**, start with dev mode (all data is in-memory and destroyed on exit):
74
76
75
77
```bash
76
78
coder server --dev
@@ -83,19 +85,20 @@ You can set up a temporary deployment, a production deployment, or a system serv
83
85
coder server
84
86
```
85
87
86
-
- To run as a **system service**, install with `.deb` (Debian, Ubuntu) or `.rpm`
87
-
(Fedora, CentOS, RHEL, SUSE):
88
+
- To run as a **system service**, install with `.deb` (Debian, Ubuntu) or `.rpm` (Fedora, CentOS, RHEL, SUSE):
88
89
89
90
```bash
90
91
# Edit the configuration!
91
92
sudo vim /etc/coder.d/coder.env
92
93
sudo service coder restart
93
94
```
94
95
95
-
> Use `coder --help` to get a complete list of flags and environment
96
-
> variables.
96
+
> macOS and Windows users: You'll need to write your own
97
+
> configuration to run Coder as a system service.
98
+
99
+
- See the [installation guide](./docs/install.md) for additional ways to run Coder (e.g., docker-compose)
97
100
98
-
See the [installation guide](./docs/install.md) for additional ways to deploy Coder.
101
+
Use `coder --help` to get a complete list of flags and environment variables.
0 commit comments