Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.27 KB

File metadata and controls

49 lines (36 loc) · 1.27 KB

Contributing to Cortex DB Backend

Thank you for your interest in contributing to Cortex DB! We welcome contributions from the community to help make this project better.

Getting Started

  1. Fork the repository on GitHub.
  2. Clone your fork locally:
    git clone https://github.com/umairrx/cortex-backend.git
    cd cortex-backend
  3. Create a new branch for your feature or bugfix:
    git checkout -b feature/amazing-feature

Development

  1. Install dependencies:
    pnpm install
  2. Set up your environment variables (see README.md).
  3. Start the development server:
    pnpm dev

Committing Changes

Please follow the Conventional Commits specification for your commit messages.

  • feat: add new collection type
  • fix: resolve auth timeout issue
  • docs: update setup instructions

Pull Requests

  1. Push your branch to your fork.
  2. Submit a Pull Request to the main branch of the original repository.
  3. Provide a clear description of your changes and any relevant issue numbers.

Code Style

  • We use TypeScript for type safety.
  • Ensure your code passes all linting checks (if configured).

Thank you for contributing!