Some checks are pending
Build / build (push) Waiting to run
Deploy / deploy (push) Waiting to run
Lint & Type Check / lint (push) Waiting to run
Security Scan / semgrep (push) Waiting to run
Security Scan / dependency-check (push) Waiting to run
Test / test (18.x) (push) Waiting to run
Test / test (20.x) (push) Waiting to run
- Remove 'server' from .dockerignore so the Express server is baked into
the image (was being excluded, causing 'Cannot find module' on startup)
- Switch from import("./server") to server.ssrLoadModule("/server/index.ts")
so Vite resolves the path from the project root, not the temp compile dir
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
61 lines
No EOL
750 B
Text
61 lines
No EOL
750 B
Text
node_modules
|
|
dist
|
|
.git
|
|
.gitignore
|
|
README.md
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.DS_Store
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.cursor
|
|
coverage
|
|
.nyc_output
|
|
.eslintcache
|
|
*.log
|
|
*.lock
|
|
*.tmp
|
|
*.tmp.*
|
|
log.txt
|
|
|
|
.DS_Store
|
|
node_modules
|
|
**/node_modules/**
|
|
build
|
|
data
|
|
.env
|
|
load-ids.txt
|
|
|
|
tmp
|
|
types
|
|
.git
|
|
.gitignore
|
|
dist
|
|
service
|
|
tests
|
|
fixtures-pages
|
|
fixtures-apps
|
|
|
|
# Netlify
|
|
.netlify
|
|
packages/ml-air/lib
|
|
packages/ml-air/bin
|
|
packages/ml-air/project
|
|
packages/ml-air/share
|
|
packages/ml-air/random_forest_classification/
|
|
packages/ml-air/__pycache__/
|
|
packages/ml-air/app/__pycache__/
|
|
packages/vcp-common/native-bridge/build
|
|
packages/vcp-common/_tests_/dataset-ranking.csv
|
|
node_modules/
|
|
Dockerfile
|
|
.gitignore |