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: content/learning-paths/cross-platform/daytona/local-dev.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Daytona makes it easy to manage local development environments.
9
9
10
10
Follow these steps to learn how to create and manage an example local development environment.
11
11
12
-
To have a go, you can use a small dev container example from Microsoft. The example is a small Python application which uses flask to serve a single HTML page.
12
+
To have a go, you can use a small dev container example from Microsoft. The example is a small Python application which uses Flask to serve a single HTML page.
13
13
14
14
Visit the [GitHub repository](https://github.com/microsoft/vscode-remote-try-python) to review the project.
15
15
@@ -104,17 +104,17 @@ Any of these options can be used to connect to a Daytona workspace.
104
104
105
105
A number of other IDEs can be used with Daytona. Refer to the [IDE documentation](https://www.daytona.io/docs/usage/ide/) for details.
106
106
107
-
## Start the flask application
107
+
## Start the Flask application
108
108
109
-
To start the flask application, run:
109
+
To start the Flask application, run:
110
110
111
111
```console
112
112
python -m flask run --port 9000 --no-debugger --no-reload
113
113
```
114
114
115
115
If you start Python in VS Code, it will automatically forward port 9000 and open a browser tab to see the web page.
116
116
117
-
If you run the Python command in a terminal after using SSH to connect to workspace, you can forward the port by running the command below on your local machine with the name of your workspace:
117
+
If you run the Python command in a terminal after using SSH to connect to a workspace, you can forward the port by running the command below on your local machine with the name of your workspace:
Copy file name to clipboardExpand all lines: content/learning-paths/cross-platform/daytona/remote-dev-aws.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,9 +46,9 @@ daytona target set
46
46
47
47
**Access Key ID**: Your access key ID that you generate in AWS for your account.
48
48
49
-
**Device Name**: This is the root device of your EC2 virtual machine, leave the default.
49
+
**Device Name**: This is the root device of your EC2 virtual machine. Leave the default.
50
50
51
-
**Image ID**: This is the AMI for the operating system you want to run, make sure to use an Arm AMI. For example, Ubuntu 24.04 for Arm is `ami-096ea6a12ea24a797`.
51
+
**Image ID**: This is the AMI for the operating system you want to run. Make sure to use an Arm AMI. For example, Ubuntu 24.04 for Arm is `ami-096ea6a12ea24a797`.
52
52
53
53
**Instance Type**: EC2 instance type to create, for example `t4g.small`.
Copy file name to clipboardExpand all lines: content/learning-paths/cross-platform/daytona/remote-dev-docker.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ layout: "learningpathall"
6
6
7
7
---
8
8
9
-
With Daytona, you can create and manage workspaces on other computers, that is not your local computer.
9
+
With Daytona, you can create and manage workspaces on another computer that is not your local computer.
10
10
11
11
This is useful if you have Arm-based servers on your local network or in the cloud and you want to use them for development.
12
12
@@ -88,7 +88,7 @@ daytona target set
88
88
89
89
**Remote Port**: This is the SSH port, and the default is 22 unless you have changed the SSH configuration on the remote computer to use a different port.
90
90
91
-
**Remote User**: This is the username you use to SSH, it cannot be root.
91
+
**Remote User**: This is the username you use to SSH. It cannot be root.
92
92
93
93
**Sock Path**: This is the path to the Docker daemon. Keep the default.
94
94
@@ -141,9 +141,9 @@ Target Options: {
141
141
142
142
You see your new target and the parameters listed. It is now the default target.
143
143
144
-
### Create a new worksspace on the remote computer
144
+
### Create a new workspace on the remote computer
145
145
146
-
You can use `daytona create` to create a workspace on the remote computer. The command is the same as on the local computer. The default target is used, the new Docker remote computer.
146
+
You can use `daytona create` to create a workspace on the remote computer. The command is the same as on the local computer. The default target is used: the new Docker remote computer.
0 commit comments