Skip to content
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
3 changes: 3 additions & 0 deletions .borg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[source]
url = 'https://raw.githubusercontent.com/techservicesillinois/secdev-template-python/refs/heads/main/'
# Additional configuration will be loaded from `<url>/.borg.template.toml`
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @ddriddle @edthedev @mpitcel @tzturner @zdc217
86 changes: 33 additions & 53 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,67 +1,47 @@
# aspell files
*.bak

# Editors
*.idea
*.swp
# Coverage output
.coverage
htmlcov
# Common
.bash_*
.histfile
.lesshst
.mysql*
.profile
.vim*
.zsh*
.zcompdump
.gnupg/*
.ssh/*
.subversion/*
.vim/*
.pytest_cache
.python_history
.vscode
.build

# Environments
.env
cleanup/*
conf
files/*
investigations/*
textfiles/*
pylib/*
*.pyc
*.ini
*.idea
bin/nicinfo
templates/adminify/custom.txt

# macOS
.DS_Store

# Makefile targets
.build
.env
build/
dist/
*.egg-info
*.eggs
wheels
.check_template
.check_template.d
.deps-test
.develop
.lint
.requirements.venv
requirements*.txt
.python-version
.static
.venv/
build/
dist/
venv
log.html
output.xml
report.html
jira_export/issues/*
jira_export/issues.html
jira_export/issues.yml
.DS_Store
wheels

# Dump files
*.json
# Python
__pycache__/
.mypy_cache/
.pytest_cache
.python-version
*.egg-info
*.eggs

# Makefile targets
.develop
.deps-test
.static
# Python Coverage.py
.coverage
report.html

# Testing logs
*simulated
# Robot Framework
log.html
output.xml

# Setuptools generated files
_version.py
7 changes: 4 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

## Supported Versions

Patches for clearpass-api will only be applied to the current release.
Patches for this solution will only be applied to the current release.

## Reporting a Bug or Vulnerability

Vulnerabilities can be responsibly disclosed through the contact information
found at [Cybersecurity Vulnerability Disclosure](https://go.illinois.edu/vulnerability).

Vulnerabilities can be responsibly disclosed to
[securitysupport@illinois.edu](mailto:securitysupport@illinois.edu).
Bugs can be reported via repository issues.
1 change: 1 addition & 0 deletions requirements-test.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ urllib3==1.26.19
setuptools-scm
vcrpy
git+https://github.com/techservicesillinois/vcrpy-cleaner.git
git+https://github.com/techservicesillinois/template-repo-sync.git
yq
Loading