Skip to content
Open
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
5 changes: 0 additions & 5 deletions .bandit.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"cookiecutter": {
"codeowner_github_usernames": "@glennmatthews @michalis1 @jdrew82",
"full_name": "Network to Code, LLC",
"email": "info@networktocode.com",
"github_org": "networktocode",
"description": "Library to easily sync/diff/update 2 different data sources",
"project_name": "diffsync",
"project_slug": "diffsync",
"repo_url": "https://github.com/networktocode/diffsync",
"base_url": "diffsync",
"project_python_name": "diffsync",
"project_python_base_version": "3.10",
"project_with_config_settings": "no",
"generate_docs": "yes",
"version": "2.2.0",
"original_publish_year": "2025",
"_drift_manager": {
"template": "git@github.com:networktocode-llc/cookiecutter-ntc.git",
"template_dir": "python",
"template_ref": "main",
"cookie_dir": "",
"pull_request_strategy": "create",
"post_actions": [],
"draft": false,
"baked_commit_ref": "bc789d65fa90182c0eb392664e1cba02ea187ab1",
"drift_managed_branch": "develop"
}
}
}
32 changes: 31 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<<<<<<< HEAD
**/*.pyc
**/*.pyo
**/*.log
Expand All @@ -6,4 +7,33 @@
Dockerfile
docker-compose.yml
.env
docs/_build
docs/_build
=======
# Docker related
development/Dockerfile
development/docker-compose*.yml
development/*.env
*.env
environments/

# Python
**/*.pyc
**/*.pyo
**/__pycache__/
**/.pytest_cache/
**/.venv/


# Other
docs/_build
FAQ.md
.git/
.gitignore
.github
tasks.py
LICENSE
**/*.log
**/.vscode/
invoke*.yml
tasks.py
>>>>>>> c5f3eb1 (Cookie initialy baked by NetworkToCode Cookie Drift Manager Tool)
5 changes: 0 additions & 5 deletions .flake8

This file was deleted.

2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Default owners for all files in this repository
# Default owner(s) of all files in this repository
* @glennmatthews @michalis1 @jdrew82
13 changes: 8 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
---
name: 🐛 Bug Report
about: Report a reproducible bug in the current release of DiffSync
about: Report a reproducible bug in the current release of diffsync
---

### Environment
* Python version: <!-- Example: 3.10 -->
* DiffSync version: <!-- Example: 1.0.0 -->
* Python version <!-- Example: 3.7.7 -->

<!-- What happened instead? -->
### Observed Behavior

<!-- What did you expect to happen? -->

### Expected Behavior

<!-- What happened instead? -->

### Observed Behavior

<!--
Describe in detail the exact steps that someone else can take to reproduce
this bug using the current release.
-->

### Steps to Reproduce
1.
2.
Expand Down
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@ about: Propose a new feature or enhancement
---

### Environment

* DiffSync version: <!-- Example: 1.0.0 -->

<!--
Describe in detail the new functionality you are proposing.
-->
### Proposed Functionality

### Proposed Functionality

<!--
Convey an example use case for your proposed feature. Write from the
perspective of a user who would benefit from the proposed
functionality and describe how.
-->
### Use Case

### Use Case
10 changes: 10 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## New Pull Request

Have you:
- [ ] Updated the README if necessary?
- [ ] Updated any configuration settings?
- [ ] Written a unit test?

## Change Notes

## Justification
Loading
Loading