diff --git a/docs/collaboration.md b/docs/collaboration.md new file mode 100644 index 00000000..d1235ec0 --- /dev/null +++ b/docs/collaboration.md @@ -0,0 +1,31 @@ +# Collaboration + +With third-party extensions, 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 VS Code, 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. diff --git a/docs/manifest.json b/docs/manifest.json index 01d47fff..065bc7d3 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -49,6 +49,12 @@ } ] }, + { + "title": "Collaboration", + "description": "How to setup real time collaboration using code server.", + "icon": " ", + "path": "./collaboration.md" + }, { "title": "Upgrade", "description": "How to upgrade code-server.",