add basic skaffolding
parent
7d89f2a56f
commit
196758306e
@ -0,0 +1,7 @@
|
||||
# Coder modules
|
||||
|
||||
Use modules inside [Coder templates](https://coder.com/docs/v2/latest/templates) to add additional functionality!
|
||||
|
||||
- Web IDEs (code-server, Jupyter)
|
||||
- Other apps (kasmVNC, pgAdmin)
|
||||
- Helpers (`git clone`, dotfiles, AWS regions)
|
@ -0,0 +1,27 @@
|
||||
---
|
||||
name: code-server
|
||||
description: Install and run VS Code in the web browser
|
||||
tags: [ide, vscode, os-linux, os-macos]
|
||||
icon: /icon/code.svg
|
||||
---
|
||||
|
||||
# code-server Module
|
||||
|
||||
Install and run VS Code in the web browser
|
||||
|
||||
)
|
||||
|
||||
## Requirements
|
||||
|
||||
- Linux or macOS template
|
||||
|
||||
## Usage instructions
|
||||
|
||||
Add the following block to your [Coder template](https://coder.com/docs/v2/latest/templates):
|
||||
|
||||
```hcl
|
||||
module "code-server" {
|
||||
source = "https://github.com/coder/coder//code-server/"
|
||||
agent = coder_agent.main.id # your agent ID
|
||||
}
|
||||
```
|
Loading…
Reference in New Issue