-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #286 from nautobot/drift-manager/pr
Cookie initialy baked by NetworkToCode Cookie Drift Manager Tool
- Loading branch information
Showing
63 changed files
with
1,383 additions
and
570 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
skips: | ||
- "B404" # Ignore subprocess | ||
# No need to check for security issues in the test scripts! | ||
exclude_dirs: | ||
- "./nautobot_chatops/tests/" | ||
|
||
skips: | ||
- "B404" | ||
- "./.venv/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"cookiecutter": { | ||
"codeowner_github_usernames": "@glennmatthews @jvanderaa @smk4664 @whitej6", | ||
"full_name": "Network to Code, LLC", | ||
"email": "[email protected]", | ||
"github_org": "nautobot", | ||
"plugin_name": "nautobot_chatops", | ||
"verbose_name": "Nautobot ChatOps App", | ||
"plugin_slug": "nautobot-chatops", | ||
"project_slug": "nautobot-plugin-chatops", | ||
"repo_url": "https://github.com/nautobot/nautobot-plugin-chatops/", | ||
"base_url": "chatops", | ||
"min_nautobot_version": "2.0.0", | ||
"max_nautobot_version": "2.9999", | ||
"camel_name": "NautobotChatOpsPlugin", | ||
"project_short_description": "Nautobot ChatOps App", | ||
"model_class_name": "None", | ||
"open_source_license": "Apache-2.0", | ||
"docs_base_url": "https://docs.nautobot.com", | ||
"docs_app_url": "https://docs.nautobot.com/projects/chatops/en/latest", | ||
"_drift_manager": { | ||
"template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", | ||
"template_dir": "nautobot-app", | ||
"template_ref": "develop", | ||
"cookie_dir": "", | ||
"branch_prefix": "drift-manager", | ||
"pull_request_strategy": "create", | ||
"post_actions": [ | ||
"black" | ||
], | ||
"draft": true, | ||
"baked_commit_ref": "f7199da166a77ef00af4347535a1e09f939a711a" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
# Docker related | ||
development/Dockerfile | ||
development/docker-compose*.yml | ||
development/*.env | ||
*.env | ||
environments/ | ||
|
||
# Python | ||
**/*.pyc | ||
**/*.pyo | ||
**/*.log | ||
**/__pycache__/ | ||
**/.pytest_cache/ | ||
**/.venv/ | ||
|
||
|
||
# Other | ||
docs/_build | ||
FAQ.md | ||
.git/ | ||
.github/ | ||
.gitignore | ||
Dockerfile | ||
docker-compose.yml | ||
.env | ||
docs/_build | ||
__pycache__/ | ||
.github | ||
tasks.py | ||
LICENSE | ||
**/*.log | ||
**/.vscode/ | ||
invoke*.yml | ||
tasks.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
[flake8] | ||
# E501: Line length is enforced by Black, so flake8 doesn't need to check it | ||
# W503: Black disagrees with this rule, as does PEP 8; Black wins | ||
ignore = E501, W503, F811, F401 | ||
ignore = | ||
F401, # Module imported but unused | ||
F811, # Redefinition of unused name from line N | ||
E501, # Line length is enforced by Black, so flake8 doesn't need to check it | ||
W503 # Black disagrees with this rule, as does PEP 8; Black wins | ||
exclude = | ||
migrations, | ||
__pycache__, | ||
manage.py, | ||
settings.py, | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.