-
Notifications
You must be signed in to change notification settings - Fork 6k
Add docs around using duckly for collaboration #4144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
ff34097
8c2e566
c43cb5b
0de9c07
7be9972
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Collaboration | ||
|
||
You can use code server to collaborate with other developers in real time. | ||
|
||
## Code sharing using Duckly | ||
|
||
[Duckly](https://duckly.com/) allows you to share your code in real-time even with people using different IDEs (like JetBrains and VSCode). | ||
|
||
- Cross-IDE support, | ||
- Real-time typing, | ||
- P2P encrypted, | ||
- Voice and audio chat, | ||
- Terminal sharing | ||
|
||
### Installing the Duckly Extension | ||
|
||
Duckly uses an extension to provide real time sharing features | ||
|
||
1. Install the Duckly extension from OpenVSX on `code-server`. | ||
|
||
```bash | ||
SERVICE_URL=https://open-vsx.org/vscode/gallery \ | ||
ITEM_URL=https://open-vsx.org/vscode/item \ | ||
code-server --install-extension gitduck.code-streaming | ||
``` | ||
|
||
2. Refresh you `code-server` window. You should now be able to see the Duckly extension. | ||
|
||
### Sharing with Duckly | ||
|
||
As `code-server` is based on VScode, you can follow the steps described on Duckly's [Pair programming with VS Code](https://duckly.com/tools/vscode) page and skip the installation step. | ||
galesky marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,12 @@ | |
} | ||
] | ||
}, | ||
{ | ||
"title": "Collaboration", | ||
"description": "How to setup real time collaboration using code server.", | ||
"icon": "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10l-2.5-1.5L15 12V4h5v8z\"></path></svg>", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is using the same icon from the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @BrunoQuaresma can you let us know which icon we should use for Collaboration and help @galesky out here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here is the SVG <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.2 13.4357L9.5 11.4357C10.4 10.7357 11 9.7357 11 8.5357V7.7357C11 5.8357 9.6 4.1357 7.7 4.0357C5.7 3.9357 4 5.5357 4 7.5357V8.5357C4 9.7357 4.6 10.7357 5.5 11.4357L2.8 13.5357C2.3 13.9357 2 14.5357 2 15.1357V17.0357C2 17.6357 2.4 18.0357 3 18.0357H12C12.6 18.0357 13 17.6357 13 17.0357V15.0357C13 14.4357 12.7 13.8357 12.2 13.4357Z"/>
<path d="M17.1 8.43436L15.3 7.23436C15.7 6.83436 16 6.23436 16 5.53436V4.63436C16 3.43436 15.1 2.23436 13.9 2.03436C12.7 1.83436 11.7 2.53436 11.2 3.43436C12.3 4.43436 13 5.83436 13 7.43436V8.43436C13 9.33436 12.8 10.2344 12.4 10.9344C12.4 10.9344 13.6 11.8344 13.6 11.9344H17C17.6 11.9344 18 11.5344 18 10.9344V10.1344C18 9.43436 17.7 8.83436 17.1 8.43436Z"/>
</svg> There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Amazing! Thanks @BrunoQuaresma @galesky do you mind using this SVG instead? Then you can @ me once it's changed and we can get this merged There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, @BrunoQuaresma! I just committed the new SVG, I think we are ready to merge It's a pity that the 'docs preview pipeline' is failing :( There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Awesome! I know, we're super sorry about that :( We just added it a couple weeks ago and didn't anticipate this issue. I added it to the next milestone so it's being prioritized: #4027 I'll merge this! Thank you again! |
||
"path": "./collaboration.md" | ||
}, | ||
{ | ||
"title": "Upgrade", | ||
"description": "How to upgrade code-server.", | ||
|
Uh oh!
There was an error while loading. Please reload this page.