Skip to content

feat: add comparison to docs #1315

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

Merged
merged 8 commits into from
May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,12 @@ coder templates update gcp-linux
- [Why remote development](about.md#why-remote-development)
- [Why Coder](about.md#why-coder)
- [What Coder is not](about.md#what-coder-is-not)
- [Comparison: Coder vs. [product]](about.md#comparison)
- [Templates](./templates.md)
- [Manage templates](./templates.md#manage-templates)
- [Persistent and ephemeral
resources](./templates.md#persistent-and-ephemeral-resources)
- [Variables](./templates.md#variables)
- [Parameters](./templates.md#parameters)
- [Workspaces](./workspaces.md)
- [Create workspaces](./workspaces.md#create-workspaces)
- [Connect with SSH](./workspaces.md#connect-with-ssh)
Expand All @@ -102,6 +103,7 @@ Read the [contributing docs](./CONTRIBUTING.md).

<!--- Add your row by date (mm/dd/yyyy), most recent date at end of list --->


| Name | Start Date | First PR Date | Organization | GitHub User Link |
| ------------------- | :--------: | :-----------: | :-------------------------------: | ------------------------------------------: |
| Mathias Fredriksson | 04/25/2022 | 04/25/2022 | [Coder](https://github.com/coder) | [mafredri](https://github.com/mafredri) |
Expand Down
12 changes: 12 additions & 0 deletions docs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,18 @@ Azure, Google Cloud, Kubernetes, and more.
- Coder is not a SaaS/fully-managed offering. You must host
Coder on a cloud service (AWS, Azure, GCP) or your private data center.

## Comparison

Please file [an issue](https://github.com/coder/coder/issues/new) if any information is out of date. Also refer to: [What Coder is not](./about.md#what-coder-is-not).


| Tool | Type | Self-hosted version | Hosted version | Availability | Supported platforms |
| :---------------------------------------------------------- | :-------------------------------------- | :--------------------------- | :------------- | :------------------------------ | :--------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Coder](https://github.com/coder/coder) | Platform: multiple workspaces and teams | ✅ | | Open source (paid version soon) | All [Terraform](https://www.terraform.io/registry/providers) resources, all clouds, multi-architecture: Linux, Mac, Windows, containers, VMs, amd64, arm64 |
| [Coder (Classic)](https://coder.com/docs) | Platform: multiple workspaces and teams | ✅ | | Proprietary/paid license | Any Kubernetes cluster: Linux Containers |
| [GitHub Codespaces](https://github.com/features/codespaces) | Platform: solo or team | Only GitHub Enterprise Cloud | ✅ | Open source/paid | Linux containers |
| [code-server](https://github.com/cdr/code-server) | Web IDE: solo developer | ✅ | | Open source | Linux, Mac, Windows, containers, VMs, amd64, arm64 |

---

Next: [Templates](./templates.md)
Expand Down