coder/docs
Kyle Carberry 3cc77d96eb
feat: Add tunnel by default (#4399)
* feat: Add tunnel by default

If an access URL is not specified, we will always tunnel.

This is from community-member feedback who exclaimed that
it's confusing having the default for `coder server` display
a warning message, and I agree.

There is very little (maybe none) in running `coder server`
without tunnel and without an access URL, so this seems like
overall a much better UX.

* Update install.sh

Co-authored-by: Ben Potter <ben@coder.com>

* Update docs/install/packages.md

Co-authored-by: Ben Potter <ben@coder.com>

* Fix reset pass test

* Fix e2e test

Co-authored-by: Ben Potter <ben@coder.com>
2022-10-07 08:05:56 -05:00
..
about docs: remove architecture diagram (#3615) 2022-08-22 10:56:10 -05:00
admin feat: Add tunnel by default (#4399) 2022-10-07 08:05:56 -05:00
contributing Docs touchups (#2421) 2022-06-16 17:47:10 +00:00
ides docs: add health checks to docs & examples (#4223) 2022-09-27 12:58:39 -05:00
images feat: Add tunnel by default (#4399) 2022-10-07 08:05:56 -05:00
install feat: Add tunnel by default (#4399) 2022-10-07 08:05:56 -05:00
networking feat: Support for comma-separation and ranges in port-forward (#4166) 2022-10-03 11:58:43 +03:00
quickstart feat: Add tunnel by default (#4399) 2022-10-07 08:05:56 -05:00
templates add docs: "docker in docker" and "systemd in docker" (#4051) 2022-09-19 16:33:31 +00:00
CONTRIBUTING.md docs(contributing): add macos homebrew commands (#3968) 2022-09-13 13:13:30 +10:00
README.md Remove alpha warning from about (#3774) 2022-08-31 03:23:56 +00:00
dotfiles.md Rename default agent to "main" instead of "dev" (#3150) 2022-07-23 20:26:56 +00:00
ides.md docs: add networking (#4030) 2022-09-12 19:07:03 +00:00
manifest.json chore: add icons to quickstarts (#4379) 2022-10-06 10:56:46 -04:00
networking.md docs: link all enterprise features (#4368) 2022-10-05 15:05:28 -04:00
quickstart.md feat: Add tunnel by default (#4399) 2022-10-07 08:05:56 -05:00
secrets.md fix: docs: remove reference to fixed issue (#4104) 2022-09-19 10:23:41 -05:00
templates.md docs: fixed a typo (#4374) 2022-10-05 09:50:56 -05:00
workspaces.md docs: fix ephemeral resources link (#4101) 2022-09-19 02:23:17 +00:00

README.md

About Coder

Coder is an open source platform for creating and managing developer workspaces on your preferred clouds and servers.

By building on top of common development interfaces (SSH) and infrastructure tools (Terraform), Coder aims to make the process of provisioning and accessing remote workspaces approachable for organizations of various sizes and stages of cloud-native maturity.

How it works

Coder workspaces are represented with Terraform, but no Terraform knowledge is required to get started. We have a database of pre-made templates built into the product.

Coder workspaces don't stop at compute. You can add storage buckets, secrets, sidecars and whatever else Terraform lets you dream up.

Learn more about managing infrastructure.

IDE Support

You can use any Web IDE (code-server, projector, Jupyter, etc.), JetBrains Gateway, VS Code Remote or even a file sync such as mutagen.

Why remote development

Migrating from local developer machines to workspaces hosted by cloud services is an increasingly common solution for developers and organizations alike. There are several benefits, including:

  • Increased speed: Server-grade compute speeds up operations in software development, such as IDE loading, code compilation and building, and the running of large workloads (such as those for monolith or microservice applications)

  • Easier environment management: Tools such as Terraform, nix, Docker, devcontainers, and so on make developer onboarding and the troubleshooting of development environments easier

  • Increase security: Centralize source code and other data onto private servers or cloud services instead of local developer machines

  • Improved compatibility: Remote workspaces share infrastructure configuration with other development, staging, and production environments, reducing configuration drift

  • Improved accessibility: Devices such as lightweight notebooks, Chromebooks, and iPads can connect to remote workspaces via browser-based IDEs or remote IDE extensions

Why Coder

The key difference between Coder OSS and other remote IDE platforms is the added layer of infrastructure control. This additional layer allows admins to:

  • Support ARM, Windows, Linux, and macOS workspaces
  • Modify pod/container specs (e.g., adding disks, managing network policies, setting/updating environment variables)
  • Use VM/dedicated workspaces, developing with Kernel features (no container knowledge required)
  • Enable persistent workspaces, which are like local machines, but faster and hosted by a cloud service

Coder includes production-ready templates for use with AWS EC2, Azure, Google Cloud, Kubernetes, and more.

What Coder is not

  • Coder is not an infrastructure as code (IaC) platform. Terraform is the first IaC provisioner in Coder, allowing Coder admins to define Terraform resources as Coder workspaces.

  • Coder is not a DevOps/CI platform. Coder workspaces can follow best practices for cloud service-based workloads, but Coder is not responsible for how you define or deploy the software you write.

  • Coder is not an online IDE. Instead, Coder supports common editors, such as VS Code, vim, and JetBrains, over HTTPS or SSH.

  • Coder is not a collaboration platform. You can use git and dedicated IDE extensions for pull requests, code reviews, and pair programming.

  • Coder is not a SaaS/fully-managed offering. You must host Coder on a cloud service (AWS, Azure, GCP) or your private data center.

Up next