Skip to content

Commit 744fc84

Browse files
release: 1.0.0
1 parent 85524fc commit 744fc84

141 files changed

Lines changed: 12933 additions & 4554 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.

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.py]
12+
indent_size = 4
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2
16+
17+
[*.md]
18+
trim_trailing_whitespace = false
19+
20+
[*.toml]
21+
indent_size = 4

.env renamed to .env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Docker Compose: platform for all services (always linux/*; default amd64, on Mac M1/M2/M3 use arm64)
2+
DOCKER_PLATFORM=linux/amd64
3+
14
# DATABASE
25
POSTGRES_HOST=localhost
36
POSTGRES_PORT=5432

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Ensure consistent line endings for cache key hashing (hashFiles) across Windows and Linux runners.
2+
docker-compose.yml text eol=lf
3+
.env.example text eol=lf

.github/dependabot.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
labels:
8+
- "dependencies"
9+
open-pull-requests-limit: 5
10+
groups:
11+
github-actions:
12+
patterns:
13+
- "*"
14+
update-types:
15+
- "minor"
16+
- "patch"
17+
commit-message:
18+
prefix: "chore(deps)"
19+
- package-ecosystem: "uv"
20+
directory: "/"
21+
schedule:
22+
interval: "weekly"
23+
labels:
24+
- "dependencies"
25+
open-pull-requests-limit: 5
26+
groups:
27+
uv-minor-patch:
28+
patterns:
29+
- "*"
30+
update-types:
31+
- "minor"
32+
- "patch"
33+
commit-message:
34+
prefix: "chore(deps)"
35+
- package-ecosystem: "docker"
36+
directory: "/"
37+
schedule:
38+
interval: "weekly"
39+
labels:
40+
- "dependencies"
41+
open-pull-requests-limit: 5
42+
commit-message:
43+
prefix: "chore(deps)"

0 commit comments

Comments
 (0)