Skip to content

Commit 57368c1

Browse files
authored
Merge pull request #1 from KongZ/db-session
Add db session
2 parents 8b4235a + e3b29b9 commit 57368c1

55 files changed

Lines changed: 1366 additions & 465 deletions

Some content is hidden

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

.editorconfig

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.go]
12+
indent_style = tab
13+
indent_size = 2
14+
15+
[makefile]
16+
indent_style = tab
17+
18+
[*.md]
19+
indent_size = 2
20+
21+
[*.yml]
22+
indent_size = 2
23+
indent_style = space
24+
25+
[*.sql]
26+
indent_size = 2
27+
indent_style = space
28+
29+
[*.json]
30+
indent_size = 2
31+
indent_style = space

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: [KongZ]
1+
github: [KongZ]

.github/linters/.jscpd.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"ignore": [
3+
"**/pkg/agent/**",
4+
"**/gollm/**",
5+
"**/demo/**",
6+
"**/vendor/**",
7+
"**/*_test.go"
8+
],
9+
"threshold": 0.1,
10+
"reporters": ["console"]
11+
}
File renamed without changes.

.github/linters/.sqlfluff

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[sqlfluff]
2+
dialect = postgres
3+
templater = jinja
4+
max_line_length = 120
5+
exclude_rules = references.keywords
6+
7+
[sqlfluff:indentation]
8+
tab_space_size = 2
9+
indent_unit = space
10+
11+
[sqlfluff:layout:type:comma]
12+
line_position = trailing
13+
14+
[sqlfluff:rules:capitalisation.keywords]
15+
capitalisation_policy = upper
16+
17+
[sqlfluff:rules:capitalisation.identifiers]
18+
capitalisation_policy = lower
19+
20+
[sqlfluff:rules:capitalisation.functions]
21+
capitalisation_policy = upper
22+

.github/linters/linters/.jscpd.json

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

.github/workflows/charts_test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929

3030
- uses: actions/setup-python@v5.3.0
3131
with:
32-
python-version: "3.x"
33-
check-latest: true
32+
python-version: "3.13"
3433

3534
- name: Set up chart-testing
3635
uses: helm/chart-testing-action@v2.7.0

0 commit comments

Comments
 (0)