mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
18 lines
504 B
YAML
18 lines
504 B
YAML
# configure updates globally
|
|
# default: all
|
|
# allowed: all, insecure, False
|
|
update: all
|
|
|
|
# configure dependency pinning globally
|
|
# default: True
|
|
# allowed: True, False
|
|
pin: True
|
|
|
|
# Specify requirement files by hand, pyup seems to struggle to
|
|
# find the ones in the project_slug folder
|
|
requirements:
|
|
- "requirements.txt"
|
|
- "{{cookiecutter.project_slug}}/requirements/base.txt"
|
|
- "{{cookiecutter.project_slug}}/requirements/local.txt"
|
|
- "{{cookiecutter.project_slug}}/requirements/production.txt"
|