Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig helps maintain consistent coding styles
# https://editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.py]
indent_size = 4

[*.md]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab
34 changes: 34 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version: 2
updates:
# Python dependencies
- package-ecosystem: "pip"
directory: "/backend"
schedule:
interval: "weekly"
commit-message:
prefix: "chore(deps)"
labels:
- "dependencies"
- "python"

# JavaScript dependencies
- package-ecosystem: "npm"
directory: "/frontend"
schedule:
interval: "weekly"
commit-message:
prefix: "chore(deps)"
labels:
- "dependencies"
- "javascript"

# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
commit-message:
prefix: "chore(deps)"
labels:
- "dependencies"
- "ci"
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.11
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Contributing to CodeIntel
# Contributing to OpenCodeIntel

First off, thanks for considering contributing! CodeIntel is better because of people like you.
Thanks for considering contributing! OpenCodeIntel is better because of people like you.

## Quick Start

```bash
# Fork the repo, then clone
git clone https://github.com/YOUR_USERNAME/codeintel-mcp
cd codeintel-mcp
git clone https://github.com/YOUR_USERNAME/opencodeintel
cd opencodeintel

# Set up backend
cd backend
Expand Down Expand Up @@ -138,4 +138,4 @@ Be respectful, constructive, and collaborative. We're all here to build somethin

---

**Thanks for contributing! 🚀**
**Thanks for contributing!**
Loading