initial commit

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2025-10-24 19:36:05 +00:00
commit 30986e0292
31 changed files with 2021 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
"name": "Monorepo - Bun + React",
"build": {
"context": ".",
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"biomejs.biome",
"oven.bun-vscode"
],
"settings": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
}
}
}
},
"forwardPorts": [3000, 5173],
"postCreateCommand": "bun install && ./scripts/setup-git.sh"
}