Skip to content
Closed
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
29 changes: 29 additions & 0 deletions .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"cookiecutter": {
"codeowner_github_usernames": "@itdependsnetworks @jeffkala @qduk",
"full_name": "Network to Code, LLC",
"email": "[email protected]",
"github_org": "networktocode",
"description": "\"Common helper functions useful in network automation.\"",
"project_name": "netutils",
"project_slug": "netutils",
"repo_url": "https://github.com/networktocode/netutils",
"base_url": "netutils",
"project_python_name": "netutils",
"project_python_base_version": "3.8",
"project_with_config_settings": "no",
"generate_docs": "yes",
"version": "1.15.1",
"_drift_manager": {
"template": "https://github.com/networktocode-llc/cookiecutter-ntc.git",
"template_dir": "python",
"template_ref": "jlk-more-python",
"cookie_dir": "",
"branch_prefix": "drift-manager",
"pull_request_strategy": "create",
"post_actions": [],
"draft": false,
"baked_commit_ref": "36ad55b634a46615d22d393aef2d46fa383d1f93"
}
}
}
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 @@ -7,4 +8,33 @@ Dockerfile
docker-compose.yml
.env
docs/_build
**/__pycache__
**/__pycache__
=======
# 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
>>>>>>> 5806227 (Cookie initialy baked by NetworkToCode Cookie Drift Manager Tool)
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ about: Report a reproducible bug in the current release of netutils
---

### Environment
<<<<<<< HEAD
* Python version: <!-- Example: 3.8.5 -->
* netutils version: <!-- Example: 1.14.0 -->
=======
* Python version: <!-- Example: 3.9 -->
* netutils version: <!-- Example: 1.0.0 -->
>>>>>>> 5806227 (Cookie initialy baked by NetworkToCode Cookie Drift Manager Tool)

<!-- What did you expect to happen? -->
### Expected Behavior
Expand Down
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ about: Propose a new feature or enhancement
---

### Environment
<<<<<<< HEAD
* netutils version: <!-- Example: 1.14.0 -->
=======
* netutils version: <!-- Example: 1.0.0 -->
>>>>>>> 5806227 (Cookie initialy baked by NetworkToCode Cookie Drift Manager Tool)

<!--
Describe in detail the new functionality you are proposing.
Expand Down
Loading