Skip to content
This repository was archived by the owner on Apr 26, 2026. It is now read-only.

Latest commit

 

History

History
42 lines (30 loc) · 770 Bytes

File metadata and controls

42 lines (30 loc) · 770 Bytes

Contributing to Portfolio

Development Setup

  1. Clone the repository

    git clone <your-repo-url>
    cd portfolio
  2. Install dependencies

    npm install
  3. Set up environment variables

    cp .env.example .env.local
  4. Start development server

    npm run dev

Code Standards

  • Follow the established ESLint and Prettier configurations
  • Write meaningful commit messages using conventional commits
  • Add tests for new features
  • Update documentation as needed

Pull Request Process

  1. Create a feature branch from main
  2. Make your changes
  3. Run quality checks: npm run quality
  4. Submit a pull request with the provided template
  5. Ensure all CI checks pass