add filebrowser (#56)

This commit is contained in:
Muhammad Atif Ali
2023-09-27 17:16:03 +03:00
committed by GitHub
parent c3d8a9949c
commit 59243bdf23
5 changed files with 257 additions and 1 deletions

31
filebrowser/README.md Normal file
View File

@@ -0,0 +1,31 @@
---
display_name: File Browser
description: A file browser for your workspace
icon: ../.icons/filebrowser.svg
maintainer_github: coder
verified: true
tags: [helper, filebrowser]
---
# File Browser
A file browser for your workspace.
```hcl
module "filebrowser" {
source = "https://registry.coder.com/modules/filebrowser"
agent_id = coder_agent.example.id
}
```
## Examples
### Serve a specific directory
```hcl
module "filebrowser" {
source = "https://registry.coder.com/modules/filebrowser"
agent_id = coder_agent.example.id
folder = "/home/coder/project"
}
```