Skip to content

Commit 1bb34bd

Browse files
committed
docs structure and edits to getting started
1 parent 185d97a commit 1bb34bd

File tree

1 file changed

+27
-7
lines changed

1 file changed

+27
-7
lines changed

docs/README.md

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ Provision remote development environments with Terraform.
1010
- Start writing code with a single command
1111
- Use one of many [examples](./examples) to get started
1212

13-
## Getting Started
13+
## Installing Coder
1414

15-
Install [the latest release](https://github.com/coder/coder/releases).
15+
Install [the latest release](https://github.com/coder/coder/releases) on a system with
16+
at least 2 CPU cores and 2 GB RAM.
1617

1718
To tinker, start with dev-mode (all data is in-memory, and is destroyed on exit):
1819

@@ -27,33 +28,35 @@ $ CODER_PG_CONNECTION_URL="postgres://<username>@<host>/<database>?password=<pas
2728
coder server
2829
```
2930

30-
To run as a system service, install with `.deb` or `.rpm`:
31+
To run as a system service, install with `.deb` (Debian, Ubuntu) or `.rpm` (Fedora, CentOS, RHEL, SUSE):
3132

3233
```bash
3334
# Edit the configuration!
3435
$ sudo vim /etc/coder.d/coder.env
3536
$ sudo service coder restart
3637
```
3738

39+
Reference `coder start --help` for a complete list of flags and environment variables.
40+
3841
### Your First Workspace
3942

40-
In a new terminal, create a new project (eg. Develop in Linux on Google Cloud):
43+
In a new terminal, create a new template (eg. Develop in Linux on Google Cloud):
4144

4245
```
4346
$ coder templates init
4447
$ coder templates create
4548
```
4649

47-
Create a new workspace and SSH in:
50+
Create a new workspace and connect via SSH:
4851

4952
```
5053
$ coder workspaces create my-first-workspace
5154
$ coder ssh my-first-workspace
5255
```
5356

54-
### Working with Projects
57+
### Modifying Templates
5558

56-
You can edit the Terraform from a sample project:
59+
You can edit the Terraform from a sample template:
5760

5861
```sh
5962
$ coder templates init
@@ -62,6 +65,23 @@ $ vim main.tf
6265
$ coder templates update gcp-linux
6366
```
6467

68+
## Documentation
69+
70+
Some pages are coming soon. Contributions welcome!
71+
72+
- [About Coder](./about.md#about-coder)
73+
- [Why remote development](about.md#why-remote-development)
74+
- [Why Coder](about.md#why-coder)
75+
- [What Coder is not](about.md#what-coder-is-not)
76+
- Concepts
77+
- Templates
78+
- Workspaces
79+
- Users and Organizations
80+
- Guides
81+
- Using the Coder CLI
82+
- Install Coder on a VM with Caddy + LetsEncrypt
83+
- Building templates in Coder
84+
6585
## Contributing
6686

6787
Read the [contributing docs](./CONTRIBUTING.md).

0 commit comments

Comments
 (0)