mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
Configure oxfmt ignorePatterns to exclude non-JS/TS files (md, json, css, yaml, etc.) to match previous Prettier behavior. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8177-chore-configure-oxfmt-to-format-only-JS-TS-Vue-files-2ee6d73d3650815080f3cc8a4a932109) by [Unito](https://www.unito.io) --------- Co-authored-by: Amp <amp@ampcode.com>
3.7 KiB
3.7 KiB
Setup Repository
Bootstrap the ComfyUI Frontend monorepo with all necessary dependencies and verification checks.
Overview
This command will:
- Install pnpm package manager (if not present)
- Install all project dependencies
- Verify the project builds successfully
- Run unit tests to ensure functionality
- Start development server to verify frontend boots correctly
Prerequisites Check
First, let's verify the environment:
# Check Node.js version (should be >= 24)
node --version
# Check if we're in a git repository
git status
Step 1: Install pnpm
# Check if pnpm is already installed
pnpm --version 2>/dev/null || {
echo "Installing pnpm..."
npm install -g pnpm
}
# Verify pnpm installation
pnpm --version
Step 2: Install Dependencies
# Install all dependencies using pnpm
echo "Installing project dependencies..."
pnpm install
# Verify node_modules exists and has packages
ls -la node_modules | head -5
Step 3: Verify Build
# Run TypeScript type checking
echo "Running TypeScript checks..."
pnpm typecheck
# Build the project
echo "Building project..."
pnpm build
# Verify dist folder was created
ls -la dist/
Step 4: Run Unit Tests
# Run unit tests
echo "Running unit tests..."
pnpm test:unit
# If tests fail, show the output and stop
if [ $? -ne 0 ]; then
echo "❌ Unit tests failed. Please fix failing tests before continuing."
exit 1
fi
echo "✅ Unit tests passed successfully"
Step 5: Verify Development Server
# Start development server in background
echo "Starting development server..."
pnpm dev &
SERVER_PID=$!
# Wait for server to start (check for port 5173 or similar)
echo "Waiting for server to start..."
sleep 10
# Check if server is running
if curl -s http://localhost:5173 > /dev/null 2>&1; then
echo "✅ Development server started successfully at http://localhost:5173"
# Kill the background server
kill $SERVER_PID
wait $SERVER_PID 2>/dev/null
else
echo "❌ Development server failed to start or is not accessible"
kill $SERVER_PID 2>/dev/null
wait $SERVER_PID 2>/dev/null
exit 1
fi
Step 6: Final Verification
# Run linting to ensure code quality
echo "Running linter..."
pnpm lint
# Show project status
echo ""
echo "🎉 Repository setup complete!"
echo ""
echo "Available commands:"
echo " pnpm dev - Start development server"
echo " pnpm build - Build for production"
echo " pnpm test:unit - Run unit tests"
echo " pnpm typecheck - Run TypeScript checks"
echo " pnpm lint - Run ESLint"
echo " pnpm format - Format code with oxfmt"
echo ""
echo "Next steps:"
echo "1. Run 'pnpm dev' to start developing"
echo "2. Open http://localhost:5173 in your browser"
echo "3. Check README.md for additional setup instructions"
Troubleshooting
If any step fails:
- pnpm installation fails: Try using
curl -fsSL https://get.pnpm.io/install.sh | sh - - Dependencies fail to install: Try clearing cache with
pnpm store pruneand retry - Build fails: Check for TypeScript errors and fix them first
- Tests fail: Review test output and fix failing tests
- Dev server fails: Check if port 5173 is already in use
Manual Verification Steps
After running the setup, manually verify:
- Dependencies installed:
ls node_modules | wc -lshould show many packages - Build artifacts:
ls dist/should show built files - Server accessible: Open http://localhost:5173 in browser
- Hot reload works: Edit a file and see changes reflect
Environment Requirements
- Node.js >= 24
- Git repository
- Internet connection for package downloads
- Available ports (typically 5173 for dev server)