-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove Dockerfile and fix devcontainer configuration
- Loading branch information
1 parent
f645370
commit 0f71870
Showing
2 changed files
with
14 additions
and
58 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |