Skip to content

Commit c313f87

Browse files
authored
Merge pull request #42 from devtron-labs/feat-chat-feedback
feat: ai chat feedback
2 parents c3d3b4e + 96f68cf commit c313f87

2,154 files changed

Lines changed: 634982 additions & 85549 deletions

File tree

Some content is hidden

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

.dockerignore

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
# Git
2+
.git
3+
.gitignore
4+
.gitattributes
5+
6+
# Documentation
7+
*.md
8+
!README.md
9+
docs/
10+
mcp-docs-server/
11+
12+
# IDE
13+
.vscode/
14+
.idea/
15+
*.swp
16+
*.swo
17+
*~
18+
19+
# OS
20+
.DS_Store
21+
Thumbs.db
22+
23+
# Build artifacts
24+
*.o
25+
*.a
26+
*.so
27+
*.exe
28+
*.test
29+
*.out
30+
vendor/
31+
32+
# Python
33+
__pycache__/
34+
*.py[cod]
35+
*$py.class
36+
*.so
37+
.Python
38+
env/
39+
venv/
40+
ENV/
41+
.venv
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
.pytest_cache/
45+
.coverage
46+
htmlcov/
47+
*.egg-info/
48+
dist/
49+
build/
50+
51+
# Data directories (will be mounted as volumes)
52+
/data/
53+
devtron-docs/
54+
chroma_db/
55+
56+
# Logs
57+
*.log
58+
logs/
59+
60+
# Test files
61+
*_test.go
62+
test/
63+
tests/
64+
65+
# CI/CD
66+
.github/
67+
.gitlab-ci.yml
68+
.travis.yml
69+
70+
# Docker
71+
docker-compose*.yml
72+
Dockerfile.dev
73+
.dockerignore
74+
75+
# Temporary files
76+
tmp/
77+
temp/
78+
*.tmp
79+
*.bak
80+
*.backup
81+
82+
# Scripts (not needed in image)
83+
scripts/dev/
84+
scripts/test/
85+
start-integrated.sh
86+
87+
# Documentation files (exclude all .md except README)
88+
STARTUP_FIX.md
89+
INDEXING_API_GUIDE.md
90+
INDEXING_CHANGES_SUMMARY.md
91+
CHANGES_COMPLETE.md
92+
DATABASE_CONNECTION_LOGS.md
93+
DOCKERFILE_OPTIMIZATION_GUIDE.md
94+
DOCKER_OPTIMIZATION_COMPLETE.md
95+
OPTIMIZATION_SUMMARY.md
96+
QUICK_START.md
97+
98+
# Node modules (if any)
99+
node_modules/
100+
package-lock.json
101+
yarn.lock
102+
103+
# Large binary files
104+
*.tar
105+
*.tar.gz
106+
*.zip
107+
*.rar
108+
109+
# Database files
110+
*.db
111+
*.sqlite
112+
*.sqlite3
113+
114+
# Cache directories
115+
.cache/
116+
.npm/
117+
.yarn/
118+

.github/semantic.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
titleOnly: true
2+
3+
types:
4+
- fix
5+
- feat
6+
- feature
7+
- fixes
8+
- chore
9+
- perf
10+
- docs
11+
- doc
12+
- release
13+
- misc
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Validate Pull Request
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
- edited
9+
- reopened
10+
branches:
11+
- 'main'
12+
- 'release-**'
13+
- 'develop'
14+
- 'hotfix-**'
15+
# paths-ignore:
16+
# - 'docs/**'
17+
# - '.github/'
18+
# - 'CHANGELOG/'
19+
# - 'charts/'
20+
# - 'manifests/'
21+
# - 'sample-docker-templates/'
22+
jobs:
23+
validate-PR-issue:
24+
runs-on: ubuntu-latest
25+
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v2
29+
30+
- name: Set up jq (for parsing JSON)
31+
run: sudo apt-get install -y jq
32+
33+
- name: PR Validation Script
34+
env:
35+
PR_BODY: ${{ github.event.pull_request.body }}
36+
PRNUM: ${{ github.event.pull_request.number }}
37+
TITLE: ${{ github.event.pull_request.title }}
38+
GH_TOKEN: ${{ github.token }}
39+
GH_PR_VALIDATOR_TOKEN: ${{ secrets.GH_PR_VALIDATOR_TOKEN }}
40+
BASE_REPO: ${{ github.event.pull_request.base.repo.full_name }}
41+
HEAD_REPO: ${{ github.event.pull_request.head.repo.full_name }}
42+
run: |
43+
wget https://raw.githubusercontent.com/devtron-labs/utilities/feat/central-pr-validator/.github/workflows/validateIssue.sh
44+
chmod +x validateIssue.sh
45+
./validateIssue.sh

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
central-api
1+
central-api
2+
.idea

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.19.9-alpine3.18 AS build-env
1+
FROM golang:1.24.6-alpine AS build-env
22
RUN apk add --no-cache git gcc musl-dev
33
RUN apk add --update make
44
RUN go install github.com/google/wire/cmd/wire@latest

0 commit comments

Comments
 (0)