Skip to content

Commit 85ff4f0

Browse files
Merge pull request #5 from shubham5080/main
Initial Gitcord engine: ingestion, scoring, role planning, and Discord bot
2 parents 6880f76 + 4d2bab0 commit 85ff4f0

File tree

88 files changed

+17739
-750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+17739
-750
lines changed

.dockerignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Dependencies and local state (never copy into image)
2+
.venv
3+
venv
4+
env
5+
__pycache__
6+
*.pyc
7+
.pytest_cache
8+
.mypy_cache
9+
.ruff_cache
10+
11+
# Git and IDE
12+
.git
13+
.gitignore
14+
.cursor
15+
*.swp
16+
*.swo
17+
18+
# Local data and secrets (mount at runtime instead)
19+
data/
20+
*.db
21+
.env
22+
.env.*
23+
!.env.example
24+
25+
# Docs and dev artifacts (optional: keep repo small)
26+
*.log
27+
bot.log
28+
bot_output.log
29+
30+
# Test and CI (not needed in production image)
31+
tests/
32+
.pre-commit-config.yaml
33+
htmlcov
34+
.coverage

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
GITHUB_TOKEN=your_github_token
2+
DISCORD_TOKEN=your_discord_token

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)