Update cheatsheets

This commit is contained in:
ivuorinen
2025-09-21 00:20:59 +00:00
parent 81a6c63f96
commit 0c2e1663ab
6 changed files with 76 additions and 9 deletions

View File

@@ -23,19 +23,19 @@ source: https://github.com/tldr-pages/tldr.git
- Open in application mode (without toolbars, URL bar, buttons, etc.):
`chromium --app={{https://example.com}}`
`chromium --app {{https://example.com}}`
- Use a proxy server:
`chromium --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
`chromium --proxy-server "{{socks5://hostname:66}}" {{example.com}}`
- Open with a custom profile directory:
`chromium --user-data-dir={{path/to/directory}}`
`chromium --user-data-dir {{path/to/directory}}`
- Open without CORS validation (useful to test an API):
`chromium --user-data-dir={{path/to/directory}} --disable-web-security`
`chromium --user-data-dir {{path/to/directory}} --disable-web-security`
- Open with a DevTools window for each tab opened:

View File

@@ -10,16 +10,16 @@ source: https://github.com/tldr-pages/tldr.git
- Create a package:
`octo pack --id={{package}}`
`octo pack --id {{package}}`
- Push a package to a repository on the Octopus server:
`octo push --package={{package}}`
`octo push --package {{package}}`
- Create a release:
`octo create-release --project={{project_name}} --packageversion={{version}}`
`octo create-release --project {{project_name}} --packageversion {{version}}`
- Deploy a release:
`octo deploy-release --project={{project_name}} --packageversion={{version}} --deployto={{environment_name}} --tenant={{deployment_target}}`
`octo deploy-release --project {{project_name}} --packageversion {{version}} --deployto {{environment_name}} --tenant {{deployment_target}}`