diff --git a/.vscode/settings.json b/.vscode/settings.json index ce4c0abe51839..b63d29a712363 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -217,5 +217,7 @@ "go.testFlags": ["-short", "-coverpkg=./..."], // We often use a version of TypeScript that's ahead of the version shipped // with VS Code. - "typescript.tsdk": "./site/node_modules/typescript/lib" + "typescript.tsdk": "./site/node_modules/typescript/lib", + "dotnetAcquisitionExtension.enablePreviewFeatures": true, + "tabnine.receiveBetaChannelUpdates": true } diff --git a/coder.env b/coder.env index 0c198649e0ee6..b0126c8b61bce 100644 --- a/coder.env +++ b/coder.env @@ -1,8 +1,8 @@ # Coder must be reachable from an external URL for users and workspaces to connect. # e.g. https://coder.example.com -CODER_ACCESS_URL= +CODER_ACCESS_URL=https://coder.ecampuslearning.com -CODER_ADDRESS= +CODER_ADDRESS=/home/projectoperations/coder CODER_PG_CONNECTION_URL= CODER_TLS_CERT_FILE= CODER_TLS_ENABLE= diff --git a/docker-compose.yaml b/docker-compose.yaml index 9b41c5f47ae61..e4c639bd75b7c 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,4 +1,3 @@ -version: "3.9" services: coder: # This MUST be stable for our documentation and @@ -8,11 +7,11 @@ services: - "7080:7080" environment: CODER_PG_CONNECTION_URL: "postgresql://${POSTGRES_USER:-username}:${POSTGRES_PASSWORD:-password}@database/${POSTGRES_DB:-coder}?sslmode=disable" - CODER_HTTP_ADDRESS: "0.0.0.0:7080" + CODER_HTTP_ADDRESS: "194.163.174.132:7080" # You'll need to set CODER_ACCESS_URL to an IP or domain # that workspaces can reach. This cannot be localhost # or 127.0.0.1 for non-Docker templates! - CODER_ACCESS_URL: "${CODER_ACCESS_URL}" + CODER_ACCESS_URL: "coder.ecampuslearning.com" # If the coder user does not have write permissions on # the docker socket, you can uncomment the following # lines and set the group ID to one that has write