-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2846b31
commit fe54b8b
Showing
1 changed file
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "pip" # Python package manager for backend dependencies | ||
directory: "/backend" # Location of backend's requirements.txt | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "npm" # Node.js package manager for frontend dependencies | ||
directory: "/frontend" # Location of the frontend's package.json | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "npm" # Node.js package manager for frontend-nextjs dependencies | ||
directory: "/frontend-nextjs" # Location of the Next.js frontend's package.json | ||
schedule: | ||
interval: "weekly" |