Skip to content

Commit

Permalink
refactor: remove Dockerfile and fix devcontainer configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Best-Codes committed Dec 22, 2024
1 parent f645370 commit 0f71870
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 58 deletions.
20 changes: 0 additions & 20 deletions .devcontainer/Dockerfile

This file was deleted.

52 changes: 14 additions & 38 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,15 @@
{
"name": "Chatter Dev",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-vscode.vscode-typescript-next",
"bradlc.vscode-tailwindcss",
"eamodio.gitlens",
"GitHub.copilot",
"GitHub.copilot-chat"
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"typescript.tsdk": "./node_modules/typescript/lib",
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"files.eol": "\n"
}
}
},
"forwardPorts": [5177],
"portsAttributes": {
"5177": {
"label": "Chatter App",
"onAutoForward": "openBrowser"
}
},
"postCreateCommand": "bun install && bun run css:watch && bun run deps:update",
"remoteUser": "vscode"
}
"name": "Chatter",
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
"features": {
"ghcr.io/devcontainers/features/git-lfs:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/nhaef/devcontainer-bun:latest": {},
"ghcr.io/swift-server-community/swift-devcontainer-features/sqlite:1": {}
},
"forwardPorts": [
5177
],
"postCreateCommand": "bun install",
"remoteUser": "root"
}

0 comments on commit 0f71870

Please sign in to comment.