|
|
|
@ -10,58 +10,18 @@ tags: [integration]
|
|
|
|
|
|
|
|
|
|
# JFrog
|
|
|
|
|
|
|
|
|
|
<!-- Describes what this module does -->
|
|
|
|
|
|
|
|
|
|
<!-- Add a screencast or screenshot here put them in .images directory -->
|
|
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
|
module "jfrog" {
|
|
|
|
|
source = "https://registry.coder.com/modules/jfrog"
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
|
|
### Example 1
|
|
|
|
|
|
|
|
|
|
Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
|
|
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
|
module "jfrog" {
|
|
|
|
|
source = "https://registry.coder.com/modules/jfrog"
|
|
|
|
|
agent_id = coder_agent.example.id
|
|
|
|
|
extensions = [
|
|
|
|
|
"dracula-theme.theme-dracula"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Enter the `<author>.<name>` into the extensions array and code-server will automatically install on start.
|
|
|
|
|
|
|
|
|
|
### Example 2
|
|
|
|
|
|
|
|
|
|
Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarted/settings#_settingsjson) file:
|
|
|
|
|
Install the JF CLI and authenticate package managers with Artifactory.
|
|
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
|
module "jfrog" {
|
|
|
|
|
source = "https://registry.coder.com/modules/jfrog"
|
|
|
|
|
agent_id = coder_agent.example.id
|
|
|
|
|
extensions = [ "dracula-theme.theme-dracula" ]
|
|
|
|
|
settings = {
|
|
|
|
|
"workbench.colorTheme" = "Dracula"
|
|
|
|
|
jfrog_host = "YYYY.jfrog.io"
|
|
|
|
|
artifactory_access_token = "XXXX" # An admin access token
|
|
|
|
|
package_managers = {
|
|
|
|
|
"npm": "npm-local",
|
|
|
|
|
"go": "go-local",
|
|
|
|
|
"pypi": "pypi-local"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Example 3
|
|
|
|
|
|
|
|
|
|
Run code-server in the background, don't fetch it from GitHub:
|
|
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
|
module "jfrog" {
|
|
|
|
|
source = "https://registry.coder.com/modules/jfrog"
|
|
|
|
|
agent_id = coder_agent.example.id
|
|
|
|
|
offline = true
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|