Skip to content

docs: update vscode web docs #10327

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 41 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
f1e03c4
docs: rework our "templates" section
bpmct Jul 28, 2023
bfee554
wikistuff
bpmct Jul 28, 2023
80215cf
fix formatting
bpmct Jul 28, 2023
7119be1
add diagram
bpmct Jul 30, 2023
2c84f2e
reorganize some things
bpmct Jul 31, 2023
3279747
docs: improve workspaces and templates doc (#9139)
marcpaq Oct 16, 2023
89d07ae
Resolved conflicts from main branch
matifali Oct 16, 2023
9488d6a
Merge branch 'main' into templates-docs
matifali Oct 16, 2023
4447e68
make fmt
matifali Oct 16, 2023
86bff3f
fix merge conflict
matifali Oct 16, 2023
85cf21b
make fmt
matifali Oct 16, 2023
acc2ea6
make gen
matifali Oct 16, 2023
92856a5
update
matifali Oct 16, 2023
21eab5f
Merge branch 'main' into templates-docs
matifali Oct 16, 2023
93b2d38
lint
matifali Oct 17, 2023
ac2e51a
Discard changes to coderd/database/queries.sql.go
matifali Oct 17, 2023
30128dd
Discard changes to cli/templates.go
matifali Oct 17, 2023
5be19b5
Discard changes to cli/templateversionarchive.go
matifali Oct 17, 2023
62b5ef1
Discard changes to cli/templateversions.go
matifali Oct 17, 2023
65d7aed
Update docker-in-workspaces.md
matifali Oct 17, 2023
bc96319
replace ```sh with ```shell
matifali Oct 17, 2023
f86b428
open-in-coder
matifali Oct 17, 2023
77b0ac4
fmt
matifali Oct 17, 2023
5469513
mention coder_metadata in icons.md
matifali Oct 17, 2023
d43e370
resource_metadata
matifali Oct 17, 2023
20bd888
use shell
matifali Oct 17, 2023
b5b74b0
modules.md
matifali Oct 17, 2023
279ebc8
mention coder registry module
matifali Oct 17, 2023
3762b02
workspace.md
matifali Oct 17, 2023
d0c4292
resource_metadata
matifali Oct 17, 2023
c50b95e
remove duplication
matifali Oct 17, 2023
8911200
address comments
matifali Oct 17, 2023
15bf4a0
cleanup
matifali Oct 17, 2023
0e90eda
update vscode web docs
matifali Oct 18, 2023
43479bc
Merge branch 'main' into vscode-web
matifali Oct 18, 2023
7aab775
Discard changes to docs/manifest.json
matifali Oct 18, 2023
6b36a82
Discard changes to site/build/tsconfig.tsbuildinfo
matifali Oct 18, 2023
f358579
remove filebrowser.db
matifali Oct 18, 2023
32bb2e3
fmt
matifali Oct 18, 2023
6859f0b
Add files via upload
matifali Oct 18, 2023
107ec2c
make gen
matifali Oct 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Prev Previous commit
Next Next commit
Resolved conflicts from main branch
  • Loading branch information
matifali committed Oct 16, 2023
commit 89d07aef5993005f17f49718b6d65eb953618194
5 changes: 5 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# If you would like `git blame` to ignore commits from this file, run...
# git config blame.ignoreRevsFile .git-blame-ignore-revs

# chore: format code with semicolons when using prettier (#9555)
988c9af0153561397686c119da9d1336d2433fdd
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ provisionersdk/proto/*.go linguist-generated=true
*.tfstate.json linguist-generated=true
*.tfstate.dot linguist-generated=true
*.tfplan.dot linguist-generated=true

site/src/api/typesGenerated.ts linguist-generated=true
23 changes: 12 additions & 11 deletions .github/actions/setup-go/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: |
inputs:
version:
description: "The Go version to use."
default: "1.20.6"
default: "1.20.10"
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -39,24 +39,25 @@ runs:
path: |
${{ env.GOMODCACHE }}
key: gomodcache-${{ runner.os }}-${{ hashFiles('**/go.sum') }}-${{ github.job }}
restore-keys: |
gomodcache-${{ runner.os }}-${{ hashFiles('**/go.sum') }}-
gomodcache-${{ runner.os }}-
# restore-keys aren't used because it causes the cache to grow
# infinitely. go.sum changes very infrequently, so rebuilding from
# scratch every now and then isn't terrible.

- name: Cache $GOCACHE
uses: buildjet/cache@v3
with:
path: |
${{ env.GOCACHE }}
# Job name must be included in the key for effective
# test cache reuse.
# Job name must be included in the key for effective test cache reuse.
# The key format is intentionally different than GOMODCACHE, because any
# time a Go file changes we invalidate this cache, whereas GOMODCACHE
# is only invalidated when go.sum changes.
key: gocache-${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/*.go', 'go.**') }}
# time a Go file changes we invalidate this cache, whereas GOMODCACHE is
# only invalidated when go.sum changes.
# The number in the key is incremented when the cache gets too large,
# since this technically grows without bound.
key: gocache2-${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/*.go', 'go.**') }}
restore-keys: |
gocache-${{ runner.os }}-${{ github.job }}-
gocache-${{ runner.os }}-
gocache2-${{ runner.os }}-${{ github.job }}-
gocache2-${{ runner.os }}-

- name: Install gotestsum
shell: bash
Expand Down
14 changes: 11 additions & 3 deletions .github/actions/setup-node/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,22 @@ inputs:
runs:
using: "composite"
steps:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: buildjet/setup-node@v3
with:
node-version: 18.17.0
# See https://github.com/actions/setup-node#caching-global-packages-data
cache: "yarn"
cache-dependency-path: ${{ inputs.directory }}/yarn.lock
cache: "pnpm"
cache-dependency-path: ${{ inputs.directory }}/pnpm-lock.yaml
- name: Install root node_modules
shell: bash
run: ./scripts/pnpm_install.sh

- name: Install node_modules
shell: bash
run: ../scripts/yarn_install.sh
run: ../scripts/pnpm_install.sh
working-directory: ${{ inputs.directory }}
2 changes: 1 addition & 1 deletion .github/actions/setup-sqlc/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ runs:
- name: Setup sqlc
uses: sqlc-dev/setup-sqlc@v3
with:
sqlc-version: "1.19.1"
sqlc-version: "1.20.0"
2 changes: 1 addition & 1 deletion .github/actions/setup-tf/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ runs:
- name: Install Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.5.2
terraform_version: 1.5.5
terraform_wrapper: false
2 changes: 1 addition & 1 deletion .github/actions/upload-datadog/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
echo "No API key provided, skipping..."
exit 0
fi
npm install -g @datadog/datadog-ci@2.10.0
npm install -g @datadog/datadog-ci@2.21.0
datadog-ci junit upload --service coder ./gotests.xml \
--tags os:${{runner.os}} --tags runner_name:${{runner.name}}
env:
Expand Down
22 changes: 2 additions & 20 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ updates:
timezone: "America/Chicago"
labels: []
commit-message:
prefix: "chore"
prefix: "ci"
ignore:
# These actions deliver the latest versions by updating the major
# release tag, so ignore minor and patch versions
Expand Down Expand Up @@ -92,6 +92,7 @@ updates:
- dependency-name: "@types/node"
update-types:
- version-update:semver-major
open-pull-requests-limit: 15
groups:
react:
patterns:
Expand All @@ -117,11 +118,6 @@ updates:
- "@eslint*"
- "@typescript-eslint/eslint-plugin"
- "@typescript-eslint/parser"
jest:
patterns:
- "jest*"
- "@swc/jest"
- "@types/jest"

- package-ecosystem: "npm"
directory: "/offlinedocs/"
Expand All @@ -146,20 +142,6 @@ updates:
- version-update:semver-major

# Update dogfood.
- package-ecosystem: "docker"
directory: "/dogfood/"
schedule:
interval: "weekly"
time: "06:00"
timezone: "America/Chicago"
commit-message:
prefix: "chore"
labels: []
groups:
dogfood-docker:
patterns:
- "*"

- package-ecosystem: "terraform"
directory: "/dogfood/"
schedule:
Expand Down
13 changes: 13 additions & 0 deletions .github/pr-deployments/certificate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: pr${PR_NUMBER}-tls
namespace: pr-deployment-certs
spec:
secretName: pr${PR_NUMBER}-tls
issuerRef:
name: letsencrypt
kind: ClusterIssuer
dnsNames:
- "${PR_HOSTNAME}"
- "*.${PR_HOSTNAME}"
31 changes: 31 additions & 0 deletions .github/pr-deployments/rbac.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: coder-workspace-pr${PR_NUMBER}
namespace: pr${PR_NUMBER}

---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: coder-workspace-pr${PR_NUMBER}
namespace: pr${PR_NUMBER}
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["*"]

---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: coder-workspace-pr${PR_NUMBER}
namespace: pr${PR_NUMBER}
subjects:
- kind: ServiceAccount
name: coder-workspace-pr${PR_NUMBER}
namespace: pr${PR_NUMBER}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: coder-workspace-pr${PR_NUMBER}
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.