Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdb70307

Browse files
authored
docs: add minor quickstart fixups (#4363)
- And fix Telemetry in manifest.json
1 parent45c05a0 commitdb70307

File tree

5 files changed

+33
-32
lines changed

5 files changed

+33
-32
lines changed

‎docs/images/icons/science.svg

Lines changed: 1 addition & 0 deletions
Loading

‎docs/manifest.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -207,17 +207,11 @@
207207
"description":"Learn how to enable Enterprise features.",
208208
"icon_path":"./images/icons/group.svg",
209209
"path":"./admin/enterprise.md"
210-
}
211-
]
212-
},
213-
{
214-
"title":"Admin",
215-
"description":"How to administer and manage Coder",
216-
"icon_path":"./images/icons/gear.svg",
217-
"children": [
210+
},
218211
{
219212
"title":"Telemetry",
220213
"description":"Learn what usage telemetry Coder collects",
214+
"icon_path":"./images/icons/science.svg",
221215
"path":"./admin/telemetry.md"
222216
}
223217
]

‎docs/quickstart/aws.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
#Amazon Web Services
22

3-
##Requirements
3+
This quickstart shows you how to set up the Coder server on AWS which will
4+
provision AWS-hosted, Linux workspaces.
45

5-
This quickstart assumes you are assigned`AdministratorAccess` policy to AWS.
6+
##Requirements
7+
8+
This quickstart assumes you are assigned the`AdministratorAccess` policy on AWS.
69

710
##Setting Up Security Groups for EC2
811

@@ -26,7 +29,7 @@ On the EC2 dashboard, click `Instances`. This will take you to all the EC2 insta
2629

2730
<imgsrc="../images/quickstart/aws/aws3.png">
2831

29-
For this tutorial, we are going to launch this as the base Ubuntu server.
32+
For this tutorial, we are going to launch this as the base Ubuntu server.
3033

3134
For the`Create key pair`, we are using ED25519 and`.pem` as we will SSH into the instance later in the tutorial.
3235
<imgsrc="../images/quickstart/aws/aws4.png">
@@ -55,7 +58,7 @@ chmod 400 [mykey].pem
5558

5659
This adds the required permissions for SSH-ing into an EC2 instance.
5760

58-
Run the following command in terminal, where`mykey` is the security key file,`username` is the username found above for the relevant EC2 operating system image, and the`ip-address` is the IPv4 address for the server:
61+
Run the following command in terminal, where`mykey` is the security key file,`username` is the username found above for the relevant EC2 operating system image, and the`ip-address` is the IPv4 address for the server:
5962

6063
```sh
6164
ssh -i [mykey].pem username@ip-address
@@ -80,6 +83,7 @@ First, edit the `coder.env` file to enable `CODER_TUNNEL` by setting the value t
8083
```sh
8184
sudo vim /etc/coder.d/coder.env
8285
```
86+
8387
<imgsrc="../images/quickstart/aws/aws7.png">
8488

8589
Exit vim and run the following command to start Coder as a system level service:
@@ -100,23 +104,23 @@ This will return a series of Coder logs, however, embedded in the launch is the
100104

101105
In this instance, Coder can be accessed at the url`https://fccad1b6c901511b30cf2cf4fbd0973e.pit-1.try.coder.app`.
102106

103-
Copy the URL and run the following command to create the first user, either on your local machine or in the AWS EC2 instance terminal.
107+
Copy the URL and run the following command to create the first user, either on your local machine or in the AWS EC2 instance terminal.
104108

105109
```sh
106110
coder login<url***.try.coder.app>
107111
```
108112

109113
Fill out the prompts. Be sure to save use email and password as these are your admin username and password.
110114

111-
You can now access Coder on your local machine with the relevant`***.try.coder.app` URL and logging in with the username and password.
115+
You can now access Coder on your local machine with the relevant`***.try.coder.app` URL and logging in with the username and password.
112116

113117
##Creating and Uploading Your First Template
114118

115-
Run`coder template init` to create your first template. You’ll be given a list of possible templates. This tutorial will show you how to set up your Coder instance to create Linux based machines on AWS.
119+
Run`coder template init` to create your first template. You’ll be given a list of possible templates. This tutorial will show you how to set up your Coder instance to create Linux based machines on AWS.
116120

117121
<imgsrc="../images/quickstart/aws/aws9.png">
118122

119-
Press`enter` to select`Develop in Linux` on AWS template. This will return the following:
123+
Press`enter` to select`Develop in Linux` on AWS template. This will return the following:
120124

121125
<imgsrc="../images/quickstart/aws/aws10.png">
122126

@@ -133,11 +137,11 @@ sudo mkdir /home/coder/.aws
133137
Run the following commands to copy the AWS credentials and give the`coder` user access to them:
134138

135139
```sh
136-
sudo cp~/.aws/credentials /home/coder/.aws/credentials
140+
sudo cp~/.aws/credentials /home/coder/.aws/credentials
137141
sudo chown coder:coder /home/coder/.aws/credentials
138142
```
139143

140-
Navigate to the`./aws-linux` folder where you created your template and run the following command to put the template on your Coder instance.
144+
Navigate to the`./aws-linux` folder where you created your template and run the following command to put the template on your Coder instance.
141145

142146
```sh
143147
coder templates create

‎docs/quickstart/azure.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#Microsoft Azure
22

3-
This quickstart will show you how to set up the Coder server on Azure and then set up an Azure hosted Linux based workspace, which allows users to create there own instances of these workspaces and use the Coder product.
3+
This quickstart shows you how to set up the Coder server on Azure which will
4+
provision Azure-hosted Linux workspaces.
45

5-
##Requirements
6+
##Requirements
67

7-
This quickstart assumes you haveaccess to admin level access toAzure.
8+
This quickstart assumes you havefull administrator privileges onAzure.
89

910
##Create An Azure VM
1011

@@ -24,11 +25,11 @@ Up next, under `Inbound port rules` modify the Select `inbound ports` to also ta
2425

2526
<imgsrc="../images/quickstart/azure/azure4.png">
2627

27-
The set up for the image is complete at this stage. Click`Review and Create` - review the information and click`Create`. A popup will appear asking you to download the key pair for the server. Click`Download private key and create resource` and place it into a folder of your choice on your local system.
28+
The set up for the image is complete at this stage. Click`Review and Create` - review the information and click`Create`. A popup will appear asking you to download the key pair for the server. Click`Download private key and create resource` and place it into a folder of your choice on your local system.
2829

2930
<imgsrc="../images/quickstart/azure/azure5.png">
3031

31-
Click`Return to create a virtual machine`. Your VM will start up!
32+
Click`Return to create a virtual machine`. Your VM will start up!
3233

3334
<imgsrc="../images/quickstart/azure/azure6.png">
3435

@@ -53,6 +54,7 @@ First, edit the `coder.env` file to enable `CODER_TUNNEL` by setting the value t
5354
```sh
5455
sudo vim /etc/coder.d/coder.env
5556
```
57+
5658
<imgsrc="../images/quickstart/azure/azure7.png">
5759

5860
Exit vim and run the following command to start Coder as a system level service:
@@ -69,38 +71,38 @@ The following command will get you information about the Coder launch service
6971

7072
This will return a series of logs related to running Coder as a system service. Embedded in the logs is the Coder Access URL.
7173

72-
Copy the URL and run the following command to create the first user, either on your local machine or in the instance terminal.
74+
Copy the URL and run the following command to create the first user, either on your local machine or in the instance terminal.
7375

7476
```sh
7577
coder login<url***.try.coder.app>
7678
```
7779

7880
Fill out the prompts. Be sure to save use email and password as these are your admin username and password.
7981

80-
You can now access Coder on your local machine with the relevant`***.try.coder.app` URL and logging in with the username and password.
82+
You can now access Coder on your local machine with the relevant`***.try.coder.app` URL and logging in with the username and password.
8183

8284
##Creating and Uploading Your First Template
8385

84-
First, run`coder template init` to create your first template. You’ll be given a list of possible templates to use. This tutorial will show you how to set up your Coder instance to create a Linux based machine on Azure.
86+
First, run`coder template init` to create your first template. You’ll be given a list of possible templates to use. This tutorial will show you how to set up your Coder instance to create a Linux based machine on Azure.
8587

8688
<imgsrc="../images/quickstart/azure/azure9.png">
8789

88-
Press`enter` to select`Develop in Linux on Azure` template. This will return the following:
90+
Press`enter` to select`Develop in Linux on Azure` template. This will return the following:
8991

9092
<imgsrc="../images/quickstart/azure/azure10.png">
9193

92-
To get started using the Azure template, install the Azure CLI by following the instructions[here](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt). Run`az login` and follow the instructions to configure the Azure command line.
94+
To get started using the Azure template, install the Azure CLI by following the instructions[here](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt). Run`az login` and follow the instructions to configure the Azure command line.
9395

9496
Coder is running as a system service, which creates the system user`coder` for handling processes. The Coder user will require access to the Azure credentials to initialize the template.
9597

9698
Run the following commands to copy the Azure credentials and give the`coder` user access to them:
9799

98100
```sh
99-
sudo cp -r~/.azure /home/coder/.azure
101+
sudo cp -r~/.azure /home/coder/.azure
100102
sudo chown -R coder:coder /home/coder/.azure/
101103
```
102104

103-
Navigate to the`./azure-linux` folder where you created your template and run the following command to put the template on your Coder instance.
105+
Navigate to the`./azure-linux` folder where you created your template and run the following command to put the template on your Coder instance.
104106

105107
```sh
106108
coder templates create
@@ -110,6 +112,6 @@ Congrats! You can now navigate to your Coder dashboard and use this Linux on Azu
110112

111113
##Next Steps
112114

113-
-[Port-forward](../networking/port-forwarding.md.md)
115+
-[Port-forward](../networking/port-forwarding.md)
114116
-[Learn more about template configuration](../templates.md)
115117
-[Configure more IDEs](../ides/web-ides.md)

‎docs/quickstart/docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ Coder with Docker has the following advantages:
6161

6262
## Next Steps
6363

64-
- [Port-forward](../networking/port-forwarding.md.md)
64+
- [Port-forward](../networking/port-forwarding.md)
6565
- [Learn more about template configuration](../templates.md)
6666
- [Configure more IDEs](../ides/web-ides.md)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp