Convert project from single backend to monorepo structure with separate frontend (Vue 3 + TypeScript + Vite) and backend directories. Updates all configuration files and build system to support both workspaces. Ref: T007 (specs/001-modbus-relay-control)
60 lines
537 B
Plaintext
60 lines
537 B
Plaintext
.temp
|
|
.cache
|
|
.devenv
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Misc
|
|
.DS_Store
|
|
.fleet
|
|
.idea
|
|
|
|
# Local env files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Backend
|
|
target/
|
|
coverage/
|
|
|
|
# Frontend
|
|
## Build outputs
|
|
.output
|
|
.data
|
|
.nuxt
|
|
.nitro
|
|
.cache
|
|
dist
|
|
dist-ssr
|
|
*.local
|
|
|
|
## Node dependencies and logs
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
## Editor directories (keep .vscode/extensions.json)
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Nix
|
|
result
|
|
.data/
|
|
|
|
|
|
# Added by cargo
|
|
|
|
/target
|
|
*.sqlite
|