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
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -47,10 +47,14 @@ To install, run:
47
47
curl -fsSL https://coder.com/install.sh | sh
48
48
```
49
49
50
-
Once installed, you can run a temporary deployment in dev mode (all data is in-memory and destroyed on exit):
50
+
Once installed, you can start a production deployment with a single command:
51
51
52
52
```sh
53
-
coder server --dev
53
+
# Automatically sets up an external access URL on *.try.coder.app
54
+
coder server --tunnel
55
+
56
+
# Requires a PostgreSQL instance and external access URL
57
+
coder server --postgres-url <url> --access-url <url>
54
58
```
55
59
56
60
Use `coder --help` to get a complete list of flags and environment variables. Use our [quickstart guide](https://coder.com/docs/coder-oss/latest/quickstart) for a full walkthrough.
Copy file name to clipboardExpand all lines: cli/root.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,8 @@ func Root() *cobra.Command {
57
57
SilenceUsage: true,
58
58
Long: `Coder — A tool for provisioning self-hosted development environments.
59
59
`,
60
-
Example: ` Start Coder in "dev" mode. This dev-mode requires no further setup, and your local `+cliui.Styles.Code.Render("coder") +` CLI will be authenticated to talk to it. This makes it easy to experiment with Coder.
61
-
`+cliui.Styles.Code.Render("$ coder server --dev") +`
60
+
Example: ` Start a Coder server.
61
+
`+cliui.Styles.Code.Render("$ coder server") +`
62
62
63
63
Get started by creating a template from an example.
0 commit comments