This repository was archived by the owner on Jul 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +33
-9
lines changed
Expand file tree Collapse file tree 5 files changed +33
-9
lines changed Original file line number Diff line number Diff line change 22 "name" : " docs" ,
33 "license" : " Apache-2.0" ,
44 "type" : " module" ,
5- "version" : " 0.35 .0" ,
5+ "version" : " 0.36 .0" ,
66 "scripts" : {
77 "postinstall" : " is-ci || husky" ,
88 "dev" : " astro dev --host" ,
Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ You can install Daytona by manually downloading the binary and placing it in you
4444
4545``` shell
4646# x86-64
47- curl -sf -L https://download.daytona.io/daytona/v0.35 /daytona-linux-amd64 -o daytona
47+ curl -sf -L https://download.daytona.io/daytona/v0.36 /daytona-linux-amd64 -o daytona
4848# AArch64
49- curl -sf -L https://download.daytona.io/daytona/v0.35 /daytona-linux-arm64 -o daytona
49+ curl -sf -L https://download.daytona.io/daytona/v0.36 /daytona-linux-arm64 -o daytona
5050```
5151
5252</Aside >
@@ -92,9 +92,9 @@ You can install Daytona by manually downloading the binary and placing it in you
9292
9393``` shell
9494# x86-64/Intel-based
95- curl -sf -L https://download.daytona.io/daytona/v0.35 /daytona-darwin-amd64 -o daytona
95+ curl -sf -L https://download.daytona.io/daytona/v0.36 /daytona-darwin-amd64 -o daytona
9696# AArch64/Apple Silicon
97- curl -sf -L https://download.daytona.io/daytona/v0.35 /daytona-darwin-arm64 -o daytona
97+ curl -sf -L https://download.daytona.io/daytona/v0.36 /daytona-darwin-arm64 -o daytona
9898```
9999
100100</Aside >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const partial = true
1111``` powershell
1212$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
1313md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
14- Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.35 /daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
14+ Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.36 /daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
1515$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
1616daytona serve;
1717```
@@ -21,9 +21,9 @@ You can install Daytona by manually downloading the binary and placing it in you
2121
2222``` powershell
2323# x86-64
24- curl -sf -L https://download.daytona.io/daytona/v0.35 /daytona-windows-amd64.exe -o daytona
24+ curl -sf -L https://download.daytona.io/daytona/v0.36 /daytona-windows-amd64.exe -o daytona
2525# AArch64
26- curl -sf -L https://download.daytona.io/daytona/v0.35 /daytona-windows-arm64.exe -o daytona
26+ curl -sf -L https://download.daytona.io/daytona/v0.36 /daytona-windows-arm64.exe -o daytona
2727```
2828
2929</Aside >
Original file line number Diff line number Diff line change @@ -388,6 +388,16 @@ Get Git repository PRs
388388| :-------- | :---------- |
389389| ` 200 ` | OK |
390390
391+ ## GET /health
392+
393+ Health check
394+
395+ ### Responses
396+
397+ | Status Code | Description |
398+ | :-------- | :---------- |
399+ | ` 200 ` | OK |
400+
391401## GET /profile
392402
393403Get profile data
Original file line number Diff line number Diff line change @@ -169,7 +169,6 @@ daytona build logs [flags]
169169__ Flags__
170170| Long | Short | Description |
171171| :--- | :---- | :---------- |
172- | ` --continue-on-completed ` | | Continue streaming logs after the build is completed |
173172| ` --follow ` | ` -f ` | Follow logs |
174173| ` --help ` | | help for daytona |
175174
@@ -477,6 +476,21 @@ __Flags__
477476| ` --verbose ` | ` -v ` | Show verbose output |
478477| ` --help ` | | help for daytona |
479478
479+ ## daytona logs
480+
481+ View logs for a workspace/project
482+
483+ ``` shell
484+ daytona logs [WORKSPACE] [PROJECT_NAME] [flags]
485+ ```
486+
487+ __ Flags__
488+ | Long | Short | Description |
489+ | :--- | :---- | :---------- |
490+ | ` --follow ` | ` -f ` | Follow logs |
491+ | ` --workspace ` | ` -w ` | View workspace logs |
492+ | ` --help ` | | help for daytona |
493+
480494## daytona prebuild
481495
482496Manage prebuilds
You can’t perform that action at this time.
0 commit comments