Skip to content

Instantly share code, notes, and snippets.

@dipakprajapati2703
dipakprajapati2703 / .claude-ignore
Last active March 15, 2026 15:23
This .claude-ignore file is used for Magento Project
# .claude-ignore - Files and directories to exclude from Claude Code analysis
# Place this in your Magento 2 project root directory
# Vendor Dependencies (too large and not project-specific)
/vendor/
/node_modules/
# Generated and Cache Files
/var/
/generated/
@markshust
markshust / CLAUDE.md
Created March 15, 2025 11:05
Claude Code configuration for Magento

Magento 2 Dev Commands & Guidelines

Build & Installation

  • composer install - Install dependencies
  • bin/magento setup:install - Install Magento
  • bin/magento setup:upgrade - Update database schema
  • bin/magento setup:di:compile - Compile dependency injection
  • bin/magento setup:static-content:deploy - Deploy static assets

Testing