This is a template for an OpenSAFELY Core repository.
Put your project description here.
New repo checklist:
- Does the repo require a Dockerfile?
If not, delete:
- the
docker/directory - .dockerignore
- hadolint pre-commit hook from
.pre-commit-config.yaml lint-dockerfileaction from.github/workflows/main.ymlIf so:- run
grep -iR new-project dockerto find places where you need to insert information about your project - update the files in the
docker/directory as needed
- the
- Is this a Django project?
If so, you probably need to add the following per-file ignores to
.flake8per-file-ignores = manage.py:INP001 gunicorn.conf.py:INP001 - Update DEVELOPERS.md with any project-specific requirements and commands
- Update commands in
justfile
Please see the additional information.