Skip to content

Commit b208e8e

Browse files
committed
Merge branch 'main' into resource-association
2 parents 806fb03 + c331137 commit b208e8e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2014
-369
lines changed

.vscode/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
"workspaceapp",
8787
"workspaceapps",
8888
"workspacebuilds",
89+
"workspacename",
8990
"wsconncache",
9091
"xerrors",
9192
"xstate",

README.md

+18-95
Original file line numberDiff line numberDiff line change
@@ -8,58 +8,30 @@ Discord"](https://img.shields.io/badge/join-us%20on%20Discord-gray.svg?longCache
88
Follow](https://img.shields.io/twitter/follow/CoderHQ?label=%40CoderHQ&style=social)](https://twitter.com/coderhq)
99
[![codecov](https://codecov.io/gh/coder/coder/branch/main/graph/badge.svg?token=TNLW3OAP6G)](https://codecov.io/gh/coder/coder)
1010

11-
## Run Coder *now*
12-
13-
```curl -L https://coder.com/install.sh | sh```
14-
15-
## What Coder does
16-
Coder creates remote development machines so you can develop your code from anywhere. #coder
17-
18-
> **Note**:
19-
> Coder is in an alpha state, but any serious bugs are P1 for us so [please report them](https://github.com/coder/coder/issues/new/choose).
11+
Coder creates remote development machines so your team can develop from anywhere.
2012

2113
<p align="center">
2214
<img src="./docs/images/hero-image.png">
2315
</p>
2416

25-
**Code more**
26-
27-
- Build and test faster
28-
- Leveraging cloud CPUs, RAM, network speeds, etc.
29-
- Access your environment from any place on any client (even an iPad)
30-
- Onboard instantly then stay up to date continuously
31-
3217
**Manage less**
3318

3419
- Ensure your entire team is using the same tools and resources
3520
- Rollout critical updates to your developers with one command
3621
- Automatically shut down expensive cloud resources
3722
- Keep your source code and data behind your firewall
3823

39-
## How it works
40-
41-
Coder workspaces are represented with Terraform. But, no Terraform knowledge is
42-
required to get started. We have a database of pre-made templates built into the
43-
product.
44-
45-
<p align="center">
46-
<img src="./docs/images/providers-compute.png">
47-
</p>
48-
49-
Coder workspaces don't stop at compute. You can add storage buckets, secrets, sidecars
50-
and whatever else Terraform lets you dream up.
51-
52-
[Learn more about managing infrastructure.](./docs/templates.md)
53-
54-
## IDE Support
24+
**Code more**
5525

56-
You can use any Web IDE ([code-server](https://github.com/coder/code-server), [projector](https://github.com/JetBrains/projector-server), [Jupyter](https://jupyter.org/), etc.), [JetBrains Gateway](https://www.jetbrains.com/remote-development/gateway/), [VS Code Remote](https://code.visualstudio.com/docs/remote/ssh-tutorial) or even a file sync such as [mutagen](https://mutagen.io/).
26+
- Build and test faster
27+
- Leveraging cloud CPUs, RAM, network speeds, etc.
28+
- Access your environment from any place on any client (even an iPad)
29+
- Onboard instantly then stay up to date continuously
5730

58-
<p align="center">
59-
<img src="./docs/images/ide-icons.svg" height=72>
60-
</p>
31+
## Getting Started
6132

62-
## Installing Coder
33+
> **Note**:
34+
> Coder is in an alpha state. [Report issues here](https://github.com/coder/coder/issues/new).
6335
6436
There are a few ways to install Coder: [install script](./docs/install.md#installsh) (macOS, Linux), [docker-compose](./docs/install.md#docker-compose), or [manually](./docs/install.md#manual) via the latest release (macOS, Windows, and Linux).
6537

@@ -81,66 +53,11 @@ Once installed, you can run a temporary deployment in dev mode (all data is in-m
8153
coder server --dev
8254
```
8355

84-
Use `coder --help` to get a complete list of flags and environment variables.
85-
86-
## Creating your first template and workspace
87-
88-
In a new terminal window, run the following to copy a sample template:
89-
90-
```bash
91-
coder templates init
92-
```
93-
94-
Follow the CLI instructions to modify and create the template specific for your
95-
usage (e.g., a template to **Develop in Linux on Google Cloud**).
96-
97-
Create a workspace using your template:
98-
99-
```bash
100-
coder create --template="yourTemplate" <workspaceName>
101-
```
102-
103-
Connect to your workspace via SSH:
104-
105-
```bash
106-
coder ssh <workspaceName>
107-
```
108-
109-
## Modifying templates
110-
111-
You can edit the Terraform template using a sample template:
112-
113-
```sh
114-
coder templates init
115-
cd gcp-linux/
116-
vim main.tf
117-
coder templates update gcp-linux
118-
```
56+
Use `coder --help` to get a complete list of flags and environment variables. Use our [quickstart guide](./docs/quickstart.md) for a full walkthrough.
11957

12058
## Documentation
12159

122-
- [About Coder](./docs/about.md#about-coder)
123-
- [Why remote development](./docs/about.md#why-remote-development)
124-
- [Why Coder](./docs/about.md#why-coder)
125-
- [What Coder is not](./docs/about.md#what-coder-is-not)
126-
- [Comparison: Coder vs. [product]](./docs/about.md#comparison)
127-
- [Templates](./docs/templates.md)
128-
- [Manage templates](./docs/templates.md#manage-templates)
129-
- [Persistent and ephemeral
130-
resources](./docs/templates.md#persistent-and-ephemeral-resources)
131-
- [Parameters](./docs/templates.md#parameters)
132-
- [Workspaces](./docs/workspaces.md)
133-
- [Create workspaces](./docs/workspaces.md#create-workspaces)
134-
- [Connect with SSH](./docs/workspaces.md#connect-with-ssh)
135-
- [Editors and IDEs](./docs/workspaces.md#editors-and-ides)
136-
- [Workspace lifecycle](./docs/workspaces.md#workspace-lifecycle)
137-
- [Updating workspaces](./docs/workspaces.md#updating-workspaces)
138-
139-
## Community
140-
141-
Join the community on [Discord](https://discord.gg/coder) and [Twitter](https://twitter.com/coderhq) #coder!
142-
143-
[Suggest improvements and report problems](https://github.com/coder/coder/issues/new/choose)
60+
Visit our docs [here](./docs/index.md).
14461

14562
## Comparison
14663

@@ -155,7 +72,13 @@ Please file [an issue](https://github.com/coder/coder/issues/new) if any informa
15572

15673
---
15774

158-
_As of 5/27/22_
75+
_Last updated: 5/27/22_
76+
77+
## Community and Support
78+
79+
Join our community on [Discord](https://discord.gg/coder) and [Twitter](https://twitter.com/coderhq)!
80+
81+
[Suggest improvements and report problems](https://github.com/coder/coder/issues/new/choose)
15982

16083
## Contributing
16184

0 commit comments

Comments
 (0)