|
1 | 1 | # Quickstart
|
2 | 2 |
|
3 |
| -See our [Docker quickstart](./quickstart/docker.md) for the easiest |
4 |
| -possible way to use Coder. |
| 3 | +Quickstarts are the fastest way to try Coder. We'll walk you through installation and adding your first template and workspace. |
5 | 4 |
|
6 |
| -## Generic Quickstart |
| 5 | +First, pick a platform: |
7 | 6 |
|
8 |
| -Please [install Coder](./install/index.md) before proceeding with the steps below. |
9 |
| - |
10 |
| -## First time owner user setup |
11 |
| - |
12 |
| -1. Run `coder login <your Access URL>` in a new terminal and follow the |
13 |
| - interactive instructions to create your owner user and password. |
14 |
| - |
15 |
| -## Templates |
16 |
| - |
17 |
| -To get started using templates, run the following command to generate a sample template: |
18 |
| - |
19 |
| -```bash |
20 |
| -coder templates init |
21 |
| -``` |
22 |
| - |
23 |
| -Follow the CLI instructions to select an example that you can modify for your |
24 |
| -specific usage (e.g., a template to **Develop code-server in Docker**): |
25 |
| - |
26 |
| -1. Navigate into your new templates folder and create your first template using |
27 |
| - the provided command (e.g., `cd ./docker-code-server && coder templates create`) |
28 |
| - |
29 |
| -1. Answer the CLI prompts; when done, confirm that you want to create your template. |
30 |
| - |
31 |
| -## Create a workspace |
32 |
| - |
33 |
| -Now, create a workspace using your template: |
34 |
| - |
35 |
| -```bash |
36 |
| -coder create --template="yourTemplate" <workspaceName> |
37 |
| -``` |
38 |
| - |
39 |
| -Connect to your workspace via SSH: |
40 |
| - |
41 |
| -```bash |
42 |
| -coder ssh <workspaceName> |
43 |
| -``` |
44 |
| - |
45 |
| -To access your workspace in the Coder dashboard, navigate to the [configured access URL](./admin/configure.md#access-url), |
46 |
| -and log in with the owner credentials provided to you by Coder. |
47 |
| - |
48 |
| - |
49 |
| - |
50 |
| -You can also create workspaces using the access URL and the Templates UI. |
51 |
| - |
52 |
| - |
54 |
| - |
55 |
| -## Modifying templates |
56 |
| - |
57 |
| -You can edit the Terraform template as follows: |
58 |
| - |
59 |
| -```sh |
60 |
| -coder templates init |
61 |
| -cd gcp-linux # modify this line as needed to access the template |
62 |
| -vim main.tf |
63 |
| -coder templates push gcp-linux # updates the template |
64 |
| -``` |
65 |
| - |
66 |
| -## Up Next |
67 |
| - |
68 |
| -Learn about [templates](./templates.md). |
| 7 | +<children> |
| 8 | + This page is rendered on https://coder.com/docs/coder-oss/latest/quickstart. Refer to the other documents in the `install/` directory for per-platform instructions. |
| 9 | +</children> |
0 commit comments