Skip to content

Commit 4525400

Browse files
Merge branch 'main' into donian_everest_branch
2 parents 77c80be + 32b70f1 commit 4525400

51 files changed

Lines changed: 2365 additions & 2806 deletions

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: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
.git
22
.github
33
.dockerignore
4-
.idea
5-
codeStyleConfig.xml
64
CONTRIBUTING.md
75
Dockerfile
86
*.env
97
!.env
10-
poetry.lock
8+
uv.lock
119
pyproject.toml
1210
tests
11+
.gitlint
12+
.pre-commit-config.yaml
13+
.taplo.toml
14+
.yamlfmt.yaml
15+
.venv
16+
.python-version
17+
.hadolint.yaml

.gitattributes

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
* text=auto
2+
3+
*.py text eol=lf
4+
*.json text eol=lf
5+
*.yml text eol=lf
6+
*.yaml text eol=lf
7+
.toml text eol=lf
8+
.md text eol=lf
9+
.*ignore text eol=lf
10+
.env* text eol=lf
11+
.gitattributes text eol=lf
12+
.gitlint text eol=lf
13+
.python-version text eol=lf
14+
.Dockerfile text eol=lf
15+
16+
LICENSE binary
17+
uv.lock binary
18+
db/core/migrations/*.py binary

.github/dependabot.yaml

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

.github/renovate.json

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"assignAutomerge": true,
4+
"configMigration": true,
5+
"dependencyDashboard": true,
6+
"dependencyDashboardAutoclose": true,
7+
"dependencyDashboardLabels": [
8+
"dependencies",
9+
"tracker"
10+
],
11+
"enabled": true,
12+
"enabledManagers": [
13+
"github-actions",
14+
"pep621",
15+
"pep723",
16+
"pre-commit",
17+
"dockerfile"
18+
],
19+
"extends": [
20+
"replacements:all",
21+
"workarounds:all"
22+
],
23+
"labels": [
24+
"dependencies"
25+
],
26+
"lockFileMaintenance": {
27+
"enabled": true
28+
},
29+
"packageRules": [
30+
{
31+
"groupName": "pep621",
32+
"matchManagers": [
33+
"pep621"
34+
]
35+
},
36+
{
37+
"groupName": "github-actions",
38+
"matchDatasources": [
39+
"github-tags"
40+
],
41+
"matchManagers": [
42+
"github-actions"
43+
]
44+
},
45+
{
46+
"groupName": "github-runners",
47+
"matchDatasources": [
48+
"github-runners"
49+
],
50+
"matchManagers": [
51+
"github-actions"
52+
]
53+
},
54+
{
55+
"groupName": "pre-commit",
56+
"matchManagers": [
57+
"pre-commit"
58+
]
59+
},
60+
{
61+
"description": "Update frquently changing pre-commit hooks on Tuesday mornings",
62+
"matchManagers": [
63+
"pre-commit"
64+
],
65+
"matchPackageNames": [
66+
"renovatebot/pre-commit-hooks",
67+
"astral-sh/uv-pre-commit",
68+
"astral-sh/ruff-pre-commit"
69+
],
70+
"schedule": [
71+
"* 3-8 * * 2"
72+
]
73+
}
74+
],
75+
"prHourlyLimit": 10,
76+
"pre-commit": {
77+
"enabled": true
78+
},
79+
"timezone": "Europe/London"
80+
}

0 commit comments

Comments
 (0)