Skip to content

Commit 48afe5d

Browse files
committed
fix: dependabot github configuration
1 parent d4bd15a commit 48afe5d

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
updates:
3+
# Python dependencies (Backend)
4+
# Dependabot uses the "pip" ecosystem to parse pyproject.toml and uv.lock
5+
- package-ecosystem: "pip"
6+
directory: "/backend"
7+
schedule:
8+
interval: "weekly"
9+
10+
# JavaScript/TypeScript dependencies (Frontend)
11+
# Dependabot uses the "npm" ecosystem to parse package.json and bun.lockb / bun.lock
12+
- package-ecosystem: "npm"
13+
directory: "/frontend"
14+
schedule:
15+
interval: "weekly"
16+
17+
# Dockerfile dependencies
18+
# Monitors base images in the Dockerfile for updates
19+
- package-ecosystem: "docker"
20+
directory: "/"
21+
schedule:
22+
interval: "weekly"

0 commit comments

Comments
 (0)