Skip to content

Commit

Permalink
dependabot (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguyinabeanie authored Jul 20, 2024
1 parent 84c97bd commit cd9d296
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,32 @@

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
# Ruby on Rails dependencies (Bundler)
- package-ecosystem: "bundler"
directory: "/" # Assuming the Gemfile is in the root directory
schedule:
interval: "weekly"

# JavaScript dependencies (npm) for the React app
- package-ecosystem: "npm"
directory: "/frontend" # Adjust this if your React app is in a different directory
schedule:
interval: "weekly"

# If you're using Docker for development or production, you can also add:
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"

# If you're using Docker for development or production, you can also add:
- package-ecosystem: "docker"
directory: "/frontend"
schedule:
interval: "weekly"

# Existing configuration for devcontainers, if still needed
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: "weekly"

0 comments on commit cd9d296

Please sign in to comment.