Skip to content

Update examples dependencies & setup dependabot #355

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2
updates:

# Maintain requirements-dev.txt
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"

# Maintain dependencies for the examples
- package-ecosystem: "npm"
directory: "/examples/code-splitting"
schedule:
interval: "weekly"
- package-ecosystem: "npm"
directory: "/examples/hot-reload"
schedule:
interval: "weekly"
- package-ecosystem: "npm"
directory: "/examples/simple"
schedule:
interval: "weekly"
5 changes: 5 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ pip install -r requirements.txt
npm install
```

Run migrations
```bash
./manage.py migrate
```

Run django server
```bash
./manage.py runserver
Expand Down
Loading